From 01fabc4eda5293a0f4cae82e540dc36dd7aad989 Mon Sep 17 00:00:00 2001 From: Daniel Ledda Date: Sun, 29 Aug 2021 17:15:59 +0200 Subject: [PATCH] fix: fixed jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2d013b9..fddb11c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,9 +12,9 @@ pipeline { } stage('Deploy') { steps { - sh '''#!/bin/bash -l - /usr/bin/rsync ./public /var/www/public/html/drums' - ''' + sh '''#!/bin/bash +/usr/bin/rsync ./public /var/www/public/html/drums' +''' } } }