From: Alexander Barton Date: Fri, 30 Jun 2023 12:08:09 +0000 (+0200) Subject: axify: Correctly test if the README.md file already exists X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ax-make.git;a=commitdiff_plain;h=HEAD axify: Correctly test if the README.md file already exists --- diff --git a/scripts/axify b/scripts/axify index 26ce496..99bfadd 100755 --- a/scripts/axify +++ b/scripts/axify @@ -144,7 +144,7 @@ fi # --- Standard project files --- -if [[ ! -e AUTHORS && -n "$ADD_FILES" ]]; then +if [[ ! -e "AUTHORS$SUFFIX" && -n "$ADD_FILES" ]]; then if git --version >/dev/null 2>&1; then echo "Creating \"AUTHORS$SUFFIX\" file ..." echo "$(git config user.name) <$(git config user.email)>" >>"AUTHORS$SUFFIX"