Skip to content

Commit

Permalink
fix packages installation
Browse files Browse the repository at this point in the history
  • Loading branch information
visheyra committed May 23, 2022
1 parent 9cfdc07 commit 5a991ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This file is used to list changes made in each version of golang.

## Unreleased

- Use go install rather than go get to install packages through node attributes

## 5.3.2 - *2022-02-09*

- Remove delivery and move to calling RSpec directly via a reusable workflow
Expand Down
2 changes: 1 addition & 1 deletion resources/package.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
gocache = '/tmp/go'

action :install do
execute "go get #{new_resource.name}" do
execute "go install #{new_resource.name}" do
user node['golang']['owner']
group node['golang']['group']
environment({
Expand Down

0 comments on commit 5a991ea

Please sign in to comment.