diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-04-10 16:46:32 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-04-10 16:46:32 +0100 |
commit | 096fb3723bb26e04b5f2798038fc3b2a7f0d6a5f (patch) | |
tree | 3470a32691a6bf867810c35974468090f8336530 | |
parent | 64232883947e37ac64938c8dd0ecd878f1547656 (diff) |
fixed unquoted dmenu_run $exe-use reported by Jukka
-rwxr-xr-x | dmenu_run | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,2 +1,2 @@ #!/bin/sh -exe=`dmenu_path | dmenu ${1+"$@"}` && exec $exe +exe=`dmenu_path | dmenu ${1+"$@"}` && exec "$exe" |