From a9df39ba8ff58a3ff8d5f2045358d1c214f2ec08 Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Sat, 27 Apr 2013 01:49:44 +0200 Subject: [PATCH] fix projects containing space characters --- lib/motion/project/template/osx.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/motion/project/template/osx.rb b/lib/motion/project/template/osx.rb index f91a4230..11e49458 100644 --- a/lib/motion/project/template/osx.rb +++ b/lib/motion/project/template/osx.rb @@ -45,6 +45,6 @@ task :run => 'build' do sh "/usr/bin/gdb --args \"#{exec}\"" else App.info 'Run', exec - sh exec + sh "\"#{exec}\"" end end