We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cfdc07 commit 5a991eaCopy full SHA for 5a991ea
CHANGELOG.md
@@ -4,6 +4,8 @@ This file is used to list changes made in each version of golang.
4
5
## Unreleased
6
7
+- Use go install rather than go get to install packages through node attributes
8
+
9
## 5.3.2 - *2022-02-09*
10
11
- Remove delivery and move to calling RSpec directly via a reusable workflow
resources/package.rb
@@ -24,7 +24,7 @@
24
gocache = '/tmp/go'
25
26
action :install do
27
- execute "go get #{new_resource.name}" do
+ execute "go install #{new_resource.name}" do
28
user node['golang']['owner']
29
group node['golang']['group']
30
environment({
0 commit comments