pipeline { agent { label 'master' } environment{ REPO_SCRIPTS = "https://git.teajay.cc/teajay/FFKW-Jenkins-Scripte" } stages { stage('clone') { steps { echo "" echo "###################" echo "# Cloning Repos #" echo "###################" echo "" echo "checking out build scripts" dir("scripts"){ git "${REPO_SCRIPTS}" } } } } }