diff --git a/Jenkinsfile b/Jenkinsfile index 808b470..e15a65f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,12 +8,12 @@ pipeline { stages { stage('Checkout Code') { steps { - // git branch: "${BRANCH}", url: "${GIT_URL}" + echo "Code has been successfully pulled and copied to ${DEST_DIR}" } } stage('Copy Code to Server Directory') { steps { - // sh "cp -R * ${DEST_DIR}/" + echo "Code has been successfully pulled and copied to ${DEST_DIR}" } } }