vpn-kill-switch / killswitch

VPN kill switch for macOS
https://vpn-kill-switch.com
BSD 3-Clause "New" or "Revised" License
165 stars 15 forks source link

make: dep: No such file or directory #7

Closed niclasek closed 7 years ago

niclasek commented 7 years ago

Hi, I tried to build this tool but I got an error. Do you know why?

~/go/src/github.com/vpn-kill-switch/killswitch$ make dep ensure make: dep: No such file or directory make: *** [get] Error 1

Regards Niclas

nbari commented 7 years ago

Hi @niclasek you need to have dep:

brew install dep

or you could just do go get and later make build give a try and let me know

nbari commented 7 years ago

I just fix the Makefile to not depend on dep please give a try should be working now

niclasek commented 7 years ago

It does. Thank you!