appcrush 1.0.1 → 1.0.2
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/bin/appcrush +2 -2
- 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: 2a07668fc7d099ce8b1afd1e5a0c3deed557c6c9
|
4
|
+
data.tar.gz: ab71aa807820b013adee5b5f63ccdae1538f2113
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fdfc7ccf7156d412d5e882ae89338d3c106b3bfc00e6950c1ee86a8b4d7c21de4926d6079eb199d2ff9af84874c8b2630a72838aa7de269cfa5a3c4319768d6
|
7
|
+
data.tar.gz: c992af85edbfd1c44b54167de07c9ac4aaa7dbec97cfca41c3fa82df7687463f10c71de71c29744924f58f72bf88c13bfd9fa9e8d171e35cfcac2c0a5abba288
|
data/bin/appcrush
CHANGED
@@ -52,7 +52,7 @@ ARGV.each do |ipa|
|
|
52
52
|
app_name = File.basename(ipa, ".*")
|
53
53
|
|
54
54
|
# Get the expanded dir by stripping out the extension from the file path
|
55
|
-
expanded_dir =
|
55
|
+
expanded_dir = ipa.sub(File.extname(ipa), '')
|
56
56
|
|
57
57
|
# In case the dir is already there, try and remove it
|
58
58
|
system "rm -drf '#{expanded_dir}'"
|
@@ -81,6 +81,6 @@ ARGV.each do |ipa|
|
|
81
81
|
end
|
82
82
|
|
83
83
|
# Cleanup. Delete the expanded dir
|
84
|
-
|
84
|
+
system "rm -drf '#{expanded_dir}'"
|
85
85
|
end
|
86
86
|
end
|