Create the .tar.gz by default if it doesn't exist. Only warn if it already exists.

This commit is contained in:
Isaac Connor 2021-12-09 15:19:49 -05:00
parent a9ef5bf731
commit 7bc46ba7a8
1 changed files with 2 additions and 2 deletions

View File

@ -222,8 +222,8 @@ rm .gitignore
cd ../
if [ ! -e "$DIRECTORY.orig.tar.gz" ]; then
read -p "$DIRECTORY.orig.tar.gz does not exist, create it? [Y/n]"
if [ -e "$DIRECTORY.orig.tar.gz" ]; then
read -p "$DIRECTORY.orig.tar.gz exists, overwrite it? [Y/n]"
if [[ "$REPLY" == "" || "$REPLY" == [yY] ]]; then
tar zcf $DIRECTORY.orig.tar.gz $DIRECTORY.orig
fi;