mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-07 08:14:00 +01:00
Don't run 'find' in the PWD
- Also remove -mindepth so as to catch deletions in the directories Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
71f8bad300
commit
5053999442
@ -372,13 +372,21 @@ uptodate() {
|
||||
local dir
|
||||
local ifs
|
||||
|
||||
if [ -n "$g_shorewalldir" ]; then
|
||||
if [ -n "$(find ${dir} -maxdepth 1 -newer $1)" ]; then
|
||||
return 1;
|
||||
fi
|
||||
fi
|
||||
|
||||
ifs="$IFS"
|
||||
IFS=':'
|
||||
|
||||
for dir in $g_shorewalldir $CONFIG_PATH; do
|
||||
if [ -n "$(find ${dir} -mindepth 1 -maxdepth 1 -newer $1)" ]; then
|
||||
IFS="$ifs"
|
||||
return 1;
|
||||
for dir in $CONFIG_PATH; do
|
||||
if [ -n "$dir" ]; then
|
||||
if [ -n "$(find ${dir} -maxdepth 1 -newer $1)" ]; then
|
||||
IFS="$ifs"
|
||||
return 1;
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user