rebuild 0.3.0.pre7 → 0.3.0.pre8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rebuild/version.rb +1 -1
- data/script/homebrew.sh +6 -6
- 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: acaa50c28935f9edfea18ddf9c71fd54ec1f446a
|
4
|
+
data.tar.gz: 3beb72df2be72480448b5cc8d689eeb6d3862cfb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: adb4bef343175f419d108fccb2605d12aee7f71e6a637ee9b8bc39cf87338394ac2fef1c5b0ef1c41a548a55427cf49813c6b0f579e14d08b1b8901d2f4e30ab
|
7
|
+
data.tar.gz: cd182c45bc03e98e86158f388d70fd36938580fa113fe3eec060c5c47c5189fe3dd4df475d2f052a7ab6910a19c5cbab14af8292cc6448db4584e7fdce1606fd
|
data/lib/rebuild/version.rb
CHANGED
data/script/homebrew.sh
CHANGED
@@ -8,22 +8,22 @@ temp_script=/tmp/brew_installer
|
|
8
8
|
# FIXME: This is not intended saving. I don't know how to spawn: ruby -e "$(..)"
|
9
9
|
curl -fsSL $install_url > $temp_script
|
10
10
|
|
11
|
-
expect -c
|
11
|
+
expect -c "
|
12
12
|
set timeout -1
|
13
13
|
spawn ruby /tmp/brew_installer
|
14
14
|
|
15
15
|
expect {
|
16
|
-
"Press RETURN to continue or any other key to abort"
|
16
|
+
\"Press RETURN to continue or any other key to abort\"
|
17
17
|
{
|
18
|
-
send "\r"
|
18
|
+
send \"\r\"
|
19
19
|
exp_continue
|
20
20
|
}
|
21
|
-
"Password
|
21
|
+
\"Password:\"
|
22
22
|
{
|
23
|
-
send "${password}\r"
|
23
|
+
send \"${password}\r\"
|
24
24
|
exp_continue
|
25
25
|
}
|
26
26
|
}
|
27
|
-
|
27
|
+
"
|
28
28
|
|
29
29
|
rm $temp_script
|