diff options
author | Kris Maglione <jg@suckless.org> | 2007-05-23 18:35:05 -0400 |
---|---|---|
committer | Kris Maglione <jg@suckless.org> | 2007-05-23 18:35:05 -0400 |
commit | d50ff5ca11564237f4f3f4a3b2d28f282c787acf (patch) | |
tree | d3f2736110246fd0600ac4b5420ab375088eea5e /dmenu_path | |
parent | Fix grouping in dmenu_path. (diff) | |
download | dmenu-d50ff5ca11564237f4f3f4a3b2d28f282c787acf.tar.gz dmenu-d50ff5ca11564237f4f3f4a3b2d28f282c787acf.tar.bz2 dmenu-d50ff5ca11564237f4f3f4a3b2d28f282c787acf.zip |
Silence the first find in dmenu_path.
Diffstat (limited to 'dmenu_path')
-rwxr-xr-x | dmenu_path | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dmenu_path b/dmenu_path index a9a89b7..94db694 100755 --- a/dmenu_path +++ b/dmenu_path @@ -9,7 +9,7 @@ qfind() { uptodate() { test -f $CACHE && test "$(echo "$PATH")" = "$(sed 1q "$CACHE")" && - qfind $PATH -maxdepth 0 -newer $CACHE + qfind $PATH -maxdepth 0 -newer $CACHE >/dev/null } if ! uptodate |