Merge pull request #2161 from schmir/use-go-install

Use 'go install' instead of 'go get'
This commit is contained in:
Anthony Sottile 2021-12-15 12:15:08 -05:00 committed by GitHub
commit c0d3b8e7d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,9 +79,11 @@ def install_environment(
gopath = directory gopath = directory
env = dict(os.environ, GOPATH=gopath) env = dict(os.environ, GOPATH=gopath)
env.pop('GOBIN', None) env.pop('GOBIN', None)
cmd_output_b('go', 'get', './...', cwd=repo_src_dir, env=env) cmd_output_b('go', 'install', './...', cwd=repo_src_dir, env=env)
for dependency in additional_dependencies: for dependency in additional_dependencies:
cmd_output_b('go', 'get', dependency, cwd=repo_src_dir, env=env) cmd_output_b(
'go', 'install', dependency, cwd=repo_src_dir, env=env,
)
# Same some disk space, we don't need these after installation # Same some disk space, we don't need these after installation
rmtree(prefix.path(directory, 'src')) rmtree(prefix.path(directory, 'src'))
pkgdir = prefix.path(directory, 'pkg') pkgdir = prefix.path(directory, 'pkg')