From a9b798171a982b1a93475d19bd5c04167d2a0894 Mon Sep 17 00:00:00 2001 From: deflax Date: Sat, 8 Feb 2025 23:48:30 +0000 Subject: [PATCH] rename prestart to init --- src/api/app/{prestart.sh => init.sh} | 0 src/api/scripts/run.sh | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/api/app/{prestart.sh => init.sh} (100%) diff --git a/src/api/app/prestart.sh b/src/api/app/init.sh similarity index 100% rename from src/api/app/prestart.sh rename to src/api/app/init.sh diff --git a/src/api/scripts/run.sh b/src/api/scripts/run.sh index 212f6bc..c4d2966 100644 --- a/src/api/scripts/run.sh +++ b/src/api/scripts/run.sh @@ -2,8 +2,8 @@ set -e -# If there's a prestart.sh script in the /app directory, run it before starting -PRE_START_PATH=/app/prestart.sh +# If there's a init.sh script in the /app directory, run it before starting +PRE_START_PATH=/app/init.sh if [ -f $PRE_START_PATH ] ; then . "$PRE_START_PATH" else