This commit is contained in:
s416226 2020-04-03 13:00:16 +02:00
commit 13095d1f3f
2 changed files with 4 additions and 4 deletions

2
Jenkinsfile vendored
View File

@ -13,7 +13,7 @@ pipeline {
}
stage('Count lines'){
steps {
sh label: '', script: './lines_counter.sh wikiniews_results.tsv'
sh label: '', script: 'lines_counter.sh wikiniews_results.tsv'
}
}
stage('Save result'){

View File

@ -1,3 +1,3 @@
#!/bin/bash
wc -l > output.txt
#!/bin/bash
wc -l $1 > output.txt