Skip to content

Commit

Permalink
fix packages installation
Browse files Browse the repository at this point in the history
  • Loading branch information
visheyra authored and ramereth committed Aug 8, 2022
1 parent 7fd2657 commit a3bd692
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ 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.4.0 - *2022-08-08*

- Use `node['golang']['install_dir']` attribute in default recipe.
- Fix source installation issues

## 5.3.3 - *2022-08-07*

Standardise files with files in sous-chefs/repo-management
- Standardise files with files in sous-chefs/repo-management

## 5.3.2 - *2022-02-09*

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 a3bd692

Please sign in to comment.