Fix go module

This commit is contained in:
Roey Darwish Dror
2020-03-09 09:41:53 +02:00
parent 6692b74850
commit e6546710c6

View File

@@ -40,7 +40,7 @@ pub fn run_go(base_dirs: &BaseDirs, run_type: RunType) -> Result<()> {
run_type run_type
.execute(&go) .execute(&go)
.args(&["get", "-u", "all"]) .args(&["get", "-u", "all"])
.env_remove("GO111MODLE") .env_remove("GO111MODULE")
.check_run() .check_run()
} }