We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e052653 commit d3fe4a3Copy full SHA for d3fe4a3
Ruby/Rakefile
@@ -28,7 +28,11 @@ task :update_build do
28
mkdir "vendor"
29
30
sh "unzip -o -d vendor #{zipfile}"
31
- mv "vendor/#{filename}", "vendor/terminal-notifier"
+ mv "vendor/#{filename}", 'vendor/terminal-notifier'
32
+
33
+ %x(xcodebuild -project '../Terminal\ Notifier.xcodeproj' -target terminal-notifier SYMROOT=build -verbose)
34
+ mv '../build/Release/terminal-notifier.app', 'vendor/terminal-notifier/'
35
+ chmod 0755, 'vendor/terminal-notifier/terminal-notifier.app/Contents/MacOS/terminal-notifier'
36
end
37
38
desc "Build gem"
0 commit comments