From 75d1cd413d76d6bcd755d2caa402d58725819f4b Mon Sep 17 00:00:00 2001 From: Raphix Date: Sun, 19 Mar 2023 14:24:45 +0100 Subject: [PATCH] Fix Install Jenkins #2 --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fe31178..921f3f9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,8 +13,8 @@ pipeline { stage('Deploy Neutral') { steps { echo "[Neutral-Deploy] - Deploy Stage" - sh "ssh raphix@raphix.fr sudo apt update" - sh "ssh raphix@raphix.fr sudo apt upgrade" + sh "ssh raphix@raphix.fr sudo apt update -y" + sh "ssh raphix@raphix.fr sudo apt upgrade -y" sh "ssh raphix@raphix.fr /home/gitlab-ci/neutral_deploy.sh" } }