From 26790fd17242c0eb56d86d9bd4bf3de8dbb5c320 Mon Sep 17 00:00:00 2001 From: "alicja.m.musial" Date: Fri, 3 Apr 2020 13:24:07 +0200 Subject: [PATCH] fix --- Jenkinsfile | 2 +- count.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a059540..963f49f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ pipeline { } stage('Count words') { steps { - sh label: '', script: './count.sh wikiniews_results.tsv' + sh label: 'count', script: './count.sh' } } } diff --git a/count.sh b/count.sh index 9a09e5d..1cb5535 100644 --- a/count.sh +++ b/count.sh @@ -1,2 +1,2 @@ #!/bin/bash -wc -l $1 > wynikZad1.txt +wc -l wikiniews_results.tsv > wynik.txt