Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Validation/Common_Run_All.sh
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,11 @@ if [ ! $STOPFDS ] ; then
# Check for files in $INDIR (Current_Results) directory
if [[ "$(ls -A $INDIR)" && ! $OVERWRITE ]]; then
echo "Directory $INDIR already exists with files."
echo "Use the -y option to overwrite files."
echo "Use the -y option to REMOVE existing files."
echo "Exiting."
exit
elif [[ "$(ls -A $INDIR)" && $OVERWRITE ]]; then
# Continue along
:
rm $INDIR/*
fi
# Create $INDIR (Current_Results) directory if it doesn't exist
else
Expand Down
Loading