You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
342 B
14 lines
342 B
#!/bin/bash
|
|
|
|
# PWGen
|
|
## Linux
|
|
go build -o pwgen cmd/pwgen/*.go
|
|
## Windows
|
|
env GOOS=windows go build -tags forceposix -o PWGen.exe cmd/pwgen/*.go
|
|
## macOS - x86_64
|
|
env GOOS=darwin go build -o pwgen_macos_x86_64.bin cmd/pwgen/*.go
|
|
## macOS - ARM (M1)
|
|
env GOOS=darwin GOARCH=arm64 go build -o pwgen_macos_m1.bin cmd/pwgen/*.go
|
|
|
|
# PWVerify (WIP)
|