This commit is contained in:
davidnewhall2 2020-01-02 15:21:19 -08:00
parent 82f72bbac3
commit 1d928c97e2
1 changed files with 4 additions and 4 deletions

View File

@ -92,7 +92,7 @@ function check2 {
}
function isChanged {
local changed=0
local changed=false
local filename=$1
SAVEIFS=$IFS
@ -100,12 +100,12 @@ function isChanged {
IFS=$(echo -en "\n\b")
for file in $CHANGES; do
if [ "$file" = "$filename" ]; then
changed=1
changed=true
break
fi
for
done
if [ "$changed" = "1" ]; then
if [ "$changed" = "true" ]; then
true
else
false