itamae-plugin-recipe-anyenv 0.3.15 → 0.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/itamae/plugin/recipe/anyenv.rb +2 -2
- data/lib/itamae/plugin/recipe/anyenv/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24823b373be61d7c9cc0871b7fe6209f37c8f68f
|
|
4
|
+
data.tar.gz: 5a3704dc7f5e50bc87a232cb756678ba8d7a5b36
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 445a9c820fc0efe57ad185b60df19796318480fea2964074b0eb683e0c6caf926b8c0b6f8045ef11b6048f5369181c88e363b8789361a18832619ac454886d18
|
|
7
|
+
data.tar.gz: 9b5e590a939a7a85e7a3d7f20ee06b2968db0e7545e37ff398602cd0c07b8878f7aae45cf09d79f5ed15624e2044cb3758b585a94b56da37ee1a1bddaf19bee3
|
|
@@ -116,10 +116,10 @@ def global_version(envname, version)
|
|
|
116
116
|
end
|
|
117
117
|
|
|
118
118
|
def init_cmd
|
|
119
|
-
execute "export ANYENV_ROOT=#{
|
|
119
|
+
execute "export ANYENV_ROOT=#{@anyenv_root_path}" do
|
|
120
120
|
user @username if @username
|
|
121
121
|
end
|
|
122
|
-
execute "export PATH=#{
|
|
122
|
+
execute "export PATH=#{@anyenv_root_path}/bin:${PATH}" do
|
|
123
123
|
user @username if @username
|
|
124
124
|
end
|
|
125
125
|
execute 'eval "$(anyenv init -)"' do
|