summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOctol1ttle <l1ttleofficial@outlook.com>2025-12-27 17:55:06 +0500
committerSefa Eyeoglu <contact@scrumplex.net>2025-12-27 15:00:42 +0100
commitdeaff57f88e42bde29eed0f2f3695d8ad6fb1694 (patch)
tree78f3e1a7be32eeec5c016c806af05ab2fe73c35d
parentd17aa6f1d66637be687041bd66b4297970b5ad49 (diff)
downloadProject-Tick-deaff57f88e42bde29eed0f2f3695d8ad6fb1694.tar.gz
Project-Tick-deaff57f88e42bde29eed0f2f3695d8ad6fb1694.zip
fix(update.sh): use correct variable when deploying to folder
-rwxr-xr-xupdate.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.sh b/update.sh
index 8e0fe38df1..e416d81173 100755
--- a/update.sh
+++ b/update.sh
@@ -84,7 +84,7 @@ fi
if [ "${DEPLOY_TO_FOLDER}" = true ]; then
echo "Deploying to ${DEPLOY_FOLDER}"
- rsync -rvog --chown="${DEPLOY_FOLDER_USER}:${DEPLOY_FOLDER_GROUP}" --exclude=.git "${LAUNCHER_DIR}/" "${DEPLOY_FOLDER}"
+ rsync -rvog --chown="${DEPLOY_FOLDER_USER}:${DEPLOY_FOLDER_GROUP}" --exclude=.git "${META_LAUNCHER_DIR}/" "${DEPLOY_FOLDER}"
fi
exit 0