Compare commits

..

2 Commits

Author SHA1 Message Date
OMGeeky
a71e8fe0a4 Add .gitattributes to normalize line endings and enforce LF for bash scripts 2025-02-18 22:47:28 +01:00
OMGeeky
a76d425ab7 Remove unnecessary exit command from ATCS.sh 2025-02-18 22:47:13 +01:00
2 changed files with 7 additions and 1 deletions

6
.gitattributes vendored Normal file
View File

@@ -0,0 +1,6 @@
# Set default behavior to automatically normalize line endings.
* text=auto
# Force bash scripts to always use LF line endings so that if a repo is accessed
# in Unix via a file share from Windows, the scripts will work.
*.sh text eol=lf

View File

@@ -20,7 +20,7 @@ else
fi
export ENV_FILE
exit 1
# shellcheck disable=SC2086
# (spellchecker is disabled for this line, because we want it to be split into multiple arguments)
$JAVA ${JAVA_OPTS} -Xmx${MAX_MEM} -jar "${ATCS_DIR}/ATCS.jar"