diff --git a/Jenkinsfile b/Jenkinsfile index 95a720e..08033ad 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,8 +28,8 @@ pipeline { steps { checkout scm sh 'ls -l' - sh 'chmod +x ./datasetscript.sh' - sh './datasetscript.sh' + sh 'chmod +x ./datasetScript.sh' + sh './datasetScript.sh' } } } diff --git a/datasetScript.sh b/datasetScript.sh new file mode 100644 index 0000000..786ff86 --- /dev/null +++ b/datasetScript.sh @@ -0,0 +1,3 @@ +#!/bin/bash +sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME' +sh 'kaggle datasets list' \ No newline at end of file