This commit is contained in:
Dominik 2021-03-25 12:49:10 +01:00
parent ac9a51c8c4
commit 4e000231c3

4
Jenkinsfile vendored
View File

@ -26,9 +26,9 @@ pipeline {
stage('Hello') {
steps {
//Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!)
echo "INPUT_TEXT: ${INPUT_TEXT}"
echo "INPUT_TEXT: ${CUTOFF}"
//Wywołaj w konsoli komendę "figlet", która generuje ASCI-art
sh "figlet \"${INPUT_TEXT}\" | tee output.txt"
sh "figlet \"${CUTOFF}\" | tee output.txt"
}
}
stage('Goodbye!') {