Fix Go packages when using Go modules (#351)
This commit is contained in:
committed by
GitHub
parent
d01aff7abd
commit
9c98005c61
@@ -36,7 +36,11 @@ pub fn run_go(base_dirs: &BaseDirs, run_type: RunType) -> Result<()> {
|
||||
.require()?;
|
||||
|
||||
print_separator("Go");
|
||||
run_type.execute(&go).arg("get").arg("-u").arg("all").check_run()
|
||||
run_type
|
||||
.execute(&go)
|
||||
.args(&["get", "-u", "all"])
|
||||
.env_remove("GO111MODLE")
|
||||
.check_run()
|
||||
}
|
||||
|
||||
pub fn run_gem(base_dirs: &BaseDirs, run_type: RunType) -> Result<()> {
|
||||
|
||||
Reference in New Issue
Block a user