wc -l command updated

This commit is contained in:
email 2019-04-26 11:07:47 +02:00
parent 661f963f64
commit ea64bdb382

2
Jenkinsfile vendored
View File

@ -2,6 +2,6 @@ node {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh 'ls -l'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416422/s416422-mlworkshops.git']]])
sh label: '', script: 'wc test_lines.txt > lines.txt'
sh label: '', script: 'wc -l test_lines.txt > lines.txt'
archiveArtifacts 'lines.txt'
}