From b3f13fa58bc7eb88f2ca1146b813b52643e7914d Mon Sep 17 00:00:00 2001 From: mohsentaba Date: Mon, 17 Aug 2026 11:10:26 +0330 Subject: [PATCH] prod --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6ad08ba..813c39a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,8 +15,9 @@ pipeline { sh """ sshpass -p \$PASSWORD ssh -o StrictHostKeyChecking=no -o ConnectTimeout=10 \$USERNAME@${production_server_ip} " cd ${project_path} && \ + chmod +x ./runner.sh 2>/dev/null || true && \ rm -f /tmp/dovodi_backend_deploy_status.txt /tmp/dovodi_backend_runner_deploy.log && \ - (nohup ./runner.sh > /tmp/dovodi_backend_runner_deploy.log 2>&1 &) + (nohup bash ./runner.sh > /tmp/dovodi_backend_runner_deploy.log 2>&1 &) " """ }