fix(workflows): clean up node.yaml by removing unnecessary commented-out commands
All checks were successful
GBCI / build (push) Successful in 0s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-03-28 09:14:55 -03:00
parent 277ce61619
commit 672d8b905f

View file

@ -42,9 +42,7 @@ jobs:
- name: Restart Bots Deployer - name: Restart Bots Deployer
run: | run: |
echo "[General Bots Deployer] Restarting..." echo "[General Bots Deployer] Restarting..."
cd /opt/gbo/bin/BotServer cd /opt/gbo/bin/BotServer
pkill -f "node ./boot.mjs" || true pkill -f "node ./boot.mjs" || true
/opt/gbo/bin/start-botserver.sh & nohup NODE_NO_WARNINGS=1 node ./boot.mjs --loader ts-node/esm --require ./suppress-node-warnings.cjs > /dev/null 2>&1 &