mirror of
https://github.com/bettercap/bettercap
synced 2025-08-14 10:46:57 -07:00
misc: updated dependencies
This commit is contained in:
parent
696c056b56
commit
c0d3c314fc
70 changed files with 6328 additions and 1494 deletions
4
vendor/golang.org/x/sys/unix/mksyscall.go
generated
vendored
4
vendor/golang.org/x/sys/unix/mksyscall.go
generated
vendored
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue