itamae-plugin-recipe-anyenv 0.3.23 → 0.3.24
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/version.rb +1 -1
- data/lib/itamae/plugin/recipe/anyenv.rb +4 -4
- 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: bf993f337018bf66b6704b968594cf1355baddcc
|
|
4
|
+
data.tar.gz: d419fa2dfa93c321e4aca0a9c931326b58f7dc81
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2895fec748c45c7ed9eb9366792b0798ca6a5de6898b45eb4d49244cf3f40302d9d66bbdbddef5ba76ca52ff7292c4f389393adb5aef09cdbf22f5813b72968f
|
|
7
|
+
data.tar.gz: cc86190fded6d23c3493d78f6f009c70f8bfe5db7c1d22ca6481151c1eb389d4c090a41638a0fa21c274ed06fa721acdc8ebf6f083e6d3836c720e6a93db8dc6
|
|
@@ -19,28 +19,28 @@ def run(attributes, username = ENV['USER'])
|
|
|
19
19
|
export ANYENV_ROOT=#{root_path};
|
|
20
20
|
export PATH=#{root_path}/bin:${PATH};
|
|
21
21
|
eval "$(anyenv init -)";
|
|
22
|
-
anyenv install rbenv;
|
|
22
|
+
yes | anyenv install rbenv;
|
|
23
23
|
EOS
|
|
24
24
|
|
|
25
25
|
execute <<-"EOS".gsub("\n", ' ')
|
|
26
26
|
export ANYENV_ROOT=#{root_path};
|
|
27
27
|
export PATH=#{root_path}/bin:${PATH};
|
|
28
28
|
eval "$(anyenv init -)";
|
|
29
|
-
rbenv install 2.3.1;
|
|
29
|
+
yes | rbenv install 2.3.1;
|
|
30
30
|
EOS
|
|
31
31
|
|
|
32
32
|
execute <<-"EOS".gsub("\n", ' ')
|
|
33
33
|
export ANYENV_ROOT=#{root_path};
|
|
34
34
|
export PATH=#{root_path}/bin:${PATH};
|
|
35
35
|
eval "$(anyenv init -)";
|
|
36
|
-
anyenv install exenv;
|
|
36
|
+
yes | anyenv install exenv;
|
|
37
37
|
EOS
|
|
38
38
|
|
|
39
39
|
execute <<-"EOS".gsub("\n", ' ')
|
|
40
40
|
export ANYENV_ROOT=#{root_path};
|
|
41
41
|
export PATH=#{root_path}/bin:${PATH};
|
|
42
42
|
eval "$(anyenv init -)";
|
|
43
|
-
exenv install 1.0.0;
|
|
43
|
+
yes | exenv install 1.0.0;
|
|
44
44
|
EOS
|
|
45
45
|
|
|
46
46
|
|