This commit is contained in:
Jakub Henyk 2023-03-28 13:08:50 +02:00
parent c1e70ea761
commit d2fbd5afd1

2
Jenkinsfile vendored
View File

@ -12,9 +12,11 @@ pipeline {
stages {
stage('Run Script') {
steps {
script {
sh "chmod +x -R ${env.WORKSPACE}"
def output = sh './take_data.sh'
echo "Output: ${output}"
}
}
}