aboutsummaryrefslogtreecommitdiff
path: root/dmenu_path
diff options
context:
space:
mode:
authorKris Maglione <jg@suckless.org>2007-05-23 19:38:23 -0400
committerKris Maglione <jg@suckless.org>2007-05-23 19:38:23 -0400
commit53e92b5c1797ae5d259942b0a3f20a63c1a02f1e (patch)
tree77140976878a12302b356a1b0b57642d867c35f7 /dmenu_path
parentd50ff5ca11564237f4f3f4a3b2d28f282c787acf (diff)
Fix the uptodate logic (uptodate if !find newer dirs than the cache).
Diffstat (limited to 'dmenu_path')
-rwxr-xr-xdmenu_path4
1 files changed, 2 insertions, 2 deletions
diff --git a/dmenu_path b/dmenu_path
index 94db694..3569077 100755
--- a/dmenu_path
+++ b/dmenu_path
@@ -9,7 +9,7 @@ qfind() {
9uptodate() { 9uptodate() {
10 test -f $CACHE && 10 test -f $CACHE &&
11 test "$(echo "$PATH")" = "$(sed 1q "$CACHE")" && 11 test "$(echo "$PATH")" = "$(sed 1q "$CACHE")" &&
12 qfind $PATH -maxdepth 0 -newer $CACHE >/dev/null 12 ! qfind $PATH -maxdepth 0 -newer $CACHE >/dev/null
13} 13}
14 14
15if ! uptodate 15if ! uptodate
@@ -18,7 +18,7 @@ then
18 echo "$PATH" 18 echo "$PATH"
19 qfind $PATH -type f -maxdepth 1 '(' -perm -u+x -o -perm -g+x -o -perm -o+x ')' | 19 qfind $PATH -type f -maxdepth 1 '(' -perm -u+x -o -perm -g+x -o -perm -o+x ')' |
20 sed 's,.*/,,' | sort | uniq 20 sed 's,.*/,,' | sort | uniq
21 } > $CACHE.$pid 21 }
22 mv $CACHE.$pid $CACHE 22 mv $CACHE.$pid $CACHE
23fi 23fi
24 24