]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: i3-dmenu-desktop: quote path (Thanks nikolaus)
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 11 Jul 2014 07:51:05 +0000 (09:51 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 11 Jul 2014 07:51:05 +0000 (09:51 +0200)
fixes #1316

i3-dmenu-desktop

index 4a2371e2d8c4352cc136c02b46e9c497ad3009ed..2c54233d02501a57bb776cf7dad0260aea777a4f 100755 (executable)
@@ -410,7 +410,7 @@ $exec =~ s/%k/$location/g;
 $exec =~ s/%%/%/g;
 
 if (exists($app->{Path}) && $app->{Path} ne '') {
-    $exec = 'cd ' . $app->{Path} . ' && ' . $exec;
+    $exec = 'cd ' . quote($app->{Path}) . ' && ' . $exec;
 }
 
 my $nosn = '';