xcodebuilder 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/xcode_builder.rb +3 -7
- 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: 30437bbbede67d9a78e2d9a1e7f02ccd7ec22fc8
|
4
|
+
data.tar.gz: 56e36a21b97e20e992f3f2137da94d0ca282bc47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ade62bd17c5fd54060debaa9b306479d582f5a3be45375d8f82245c77fa0c86ae5c308a7bfd8bb32ef412ae120fadad2c1b450d503a0e7b09a4c5acb8a0d9e5e
|
7
|
+
data.tar.gz: 11680401964b1f172590f2f8f62921676b20b071dae020726aef8e6bdf4f6cb1e7d2013c9ecb4f6485d38c8420bb501de3593497325be38fdfb7eff4dbd5ceb8
|
data/lib/xcode_builder.rb
CHANGED
@@ -71,9 +71,9 @@ module XcodeBuilder
|
|
71
71
|
# update the long version number with the date
|
72
72
|
@configuration.timestamp_plist if @configuration.timestamp_build
|
73
73
|
|
74
|
-
|
75
|
-
|
76
|
-
|
74
|
+
print "Building Project..."
|
75
|
+
success = xcodebuild @configuration.build_arguments, "archive"
|
76
|
+
raise "** BUILD FAILED **" unless success
|
77
77
|
puts "Done"
|
78
78
|
end
|
79
79
|
|
@@ -97,10 +97,6 @@ module XcodeBuilder
|
|
97
97
|
cmd << "-exportPath"
|
98
98
|
cmd << "'#{File.expand_path @configuration.ipa_path}'"
|
99
99
|
|
100
|
-
# puts "Running #{cmd.join(" ")}" if @configuration.verbose
|
101
|
-
# cmd << "2>&1 /dev/null"
|
102
|
-
# cmd = cmd.join(" ")
|
103
|
-
# system(cmd)
|
104
100
|
xcodebuild cmd, ""
|
105
101
|
puts "Done."
|
106
102
|
|