From 0ec669f99eca5fd12a05c71aa8ff3f675bca6d38 Mon Sep 17 00:00:00 2001 From: Daniel McCrystal Date: Fri, 1 Aug 2025 01:00:36 -0400 Subject: [PATCH] deployer updates --- deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index db83e69..9e6bef5 100755 --- a/deploy.sh +++ b/deploy.sh @@ -5,8 +5,6 @@ rm -f $DOMAIN_DIR/build.log ln -s $LOGS_DIR/build.log $DOMAIN_DIR/build.log rm -f $DOMAIN_DIR/start.log -ln -s $LOGS_DIR/start.log $DOMAIN_DIR/start.log - # Create our service configuration service_file=$DOMAIN.service @@ -60,6 +58,7 @@ git checkout $COMMIT_HASH # build the dist artifact from within the src directory make build +echo build complete! cd .. @@ -68,5 +67,6 @@ ln -sf $DOMAIN_DIR/$service_file /etc/systemd/system/$service systemctl daemon-reload systemctl restart $service +ln -s $LOGS_DIR/start.log $DOMAIN_DIR/start.log