|
@@ -48,7 +48,7 @@ IS_VALID=true
|
|
|
|
|
|
# Loop through all files missing from the compose.dev.yaml file
|
|
# Loop through all files missing from the compose.dev.yaml file
|
|
for file in $VOLUME_LIST; do
|
|
for file in $VOLUME_LIST; do
|
|
- if [ ! -e "$file" ] && [[ ! " $IGNORE_LIST " =~ $file ]]; then
|
|
|
|
|
|
+ if [[ ! -e $file && " $IGNORE_LIST " != *" $file "* ]]; then
|
|
echo "$file: No such file or directory"
|
|
echo "$file: No such file or directory"
|
|
IS_VALID=false
|
|
IS_VALID=false
|
|
fi
|
|
fi
|