calabash-android 0.5.10.pre1 → 0.5.10.pre2
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d2fed43ea97b2654ee8716da45c5013bd66a218
|
4
|
+
data.tar.gz: a88db5610925b1459b6599981a45c19acce0fa2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e23603bad72517f5535b15ba72aebd306d75ca8e9eb90a45d1c5da2c2031555074626ac3db5c71164f2afcfa8fb97e225ec43b5652e2b4f2e51a29e32efc7c32
|
7
|
+
data.tar.gz: 867f6e781441753c4a6bc010843ffbc5519cf9f3f658537e714599136a4c0ffde1783be7c063aa6374839f2290f361defaa2e20b97c41ea5b66f06c88587ab6f
|
@@ -6,13 +6,13 @@ class JavaKeystore
|
|
6
6
|
raise "No such keystore file '#{location}'" unless File.exists?(File.expand_path(location))
|
7
7
|
log "Reading keystore data from keystore file '#{File.expand_path(location)}'"
|
8
8
|
|
9
|
-
keystore_data = system_with_stdout_on_success(Env.keytool_path, '-list', '-v', '-alias', keystore_alias, '-keystore', location, '-storepass', password, '-J"-Dfile.encoding=utf-8"', '-J"-Duser.
|
9
|
+
keystore_data = system_with_stdout_on_success(Env.keytool_path, '-list', '-v', '-alias', keystore_alias, '-keystore', location, '-storepass', password, '-J"-Dfile.encoding=utf-8"', '-J"-Duser.language=en-US"')
|
10
10
|
|
11
11
|
if keystore_data.nil?
|
12
12
|
if keystore_alias.empty?
|
13
13
|
log "Could not obtain keystore data. Will try to extract alias automatically"
|
14
14
|
|
15
|
-
keystore_data = system_with_stdout_on_success(Env.keytool_path, '-list', '-v', '-keystore', location, '-storepass', password, '-J"-Dfile.encoding=utf-8"', '-J"-Duser.
|
15
|
+
keystore_data = system_with_stdout_on_success(Env.keytool_path, '-list', '-v', '-keystore', location, '-storepass', password, '-J"-Dfile.encoding=utf-8"', '-J"-Duser.language=en-US"')
|
16
16
|
aliases = keystore_data.scan(/Alias name\:\s*(.*)/).flatten
|
17
17
|
|
18
18
|
if aliases.length == 0
|
Binary file
|