fix when apps have spaces

This commit is contained in:
Laurent Sansonetti
2011-08-08 11:08:35 -04:00
parent 00036d5c3d
commit e6ed37d648

View File

@@ -50,7 +50,7 @@ desc "Deploy on the device"
task :deploy => :package do
deploy = File.join(Rubixir::CONFIG.datadir, 'deploy')
flags = Rake.application.options.trace ? '-d' : ''
sh "#{deploy} #{flags} #{Rubixir::CONFIG.archive}"
sh "#{deploy} #{flags} \"#{Rubixir::CONFIG.archive}\""
end
desc "Clear build objects"