=== modified file 'src/daemon.vala' --- src/daemon.vala 2011-03-21 02:49:37 +0000 +++ src/daemon.vala 2011-03-28 02:21:15 +0000 @@ -740,7 +740,10 @@ else if (uri.has_prefix ("unity-runner://")) { exec_or_dir = uri.offset (15); - args = exec_or_dir.split (" ", 0); + args = new string[3]; + args[0] = "bash"; + args[1] = "-c"; + args[2] = exec_or_dir; this.runner.add_history (exec_or_dir); } else