misc: updated dependencies

This commit is contained in:
evilsocket 2019-02-10 13:04:03 +01:00
commit c0d3c314fc
No known key found for this signature in database
GPG key ID: 1564D7F30393A456
70 changed files with 6328 additions and 1494 deletions

View file

@ -88,6 +88,10 @@ func parseParam(p string) Param {
func main() {
// Get the OS and architecture (using GOARCH_TARGET if it exists)
goos := os.Getenv("GOOS")
if goos == "" {
fmt.Fprintln(os.Stderr, "GOOS not defined in environment")
os.Exit(1)
}
goarch := os.Getenv("GOARCH_TARGET")
if goarch == "" {
goarch = os.Getenv("GOARCH")