From e50f361b07eaf66abfa28cc162cb50858926da2f Mon Sep 17 00:00:00 2001 From: DaX Date: Thu, 5 Mar 2026 01:56:30 +0100 Subject: [PATCH] Diagnostic: comprehensive node binary search without set -e --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 0d96e36..43abc62 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -145,7 +145,7 @@ jobs: if: needs.detect.outputs.migrations == 'true' run: | cat > /tmp/migrate-params.json << 'PARAMS' - {"commands":["set -e","cat /etc/systemd/system/node-api.service","which node 2>/dev/null || true","find / -name 'node' -type f 2>/dev/null || true","echo PATH=$PATH"]} + {"commands":["cat /etc/systemd/system/node-api.service 2>/dev/null || echo 'no service file'","systemctl cat node-api 2>/dev/null || echo 'systemctl cat failed'","which node 2>/dev/null || echo 'node not in PATH'","find /usr /opt /snap /home -name 'node' -type f 2>/dev/null || echo 'find found nothing'","echo PATH=$PATH","ls -la /usr/local/bin/node* /usr/bin/node* 2>/dev/null || echo 'no node in standard paths'"]} PARAMS CMD_ID=$(aws ssm send-command \ --region $AWS_REGION \