From 21ca863b8cb2fae4ee48d38de2f6cc778716ab19 Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Fri, 5 Jun 2020 13:57:37 +0700 Subject: [PATCH] fixed stats --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 053a3fa9..3207fb3a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -35,7 +35,7 @@ pipeline { stage('stats') { steps { sh "mkdir -p ${WORKSPACE}/dist/stats" - sh "git log --pretty=format:\'{ \"commit\": \"%H\", \"subject\": \"%s\", \"timestamp\": \"%at\" } | awk \'BEGIN { print(\"[\") } { print($0\",\") } END { print(\"]\") }'' > ${WORKSPACE}/dist/stats/git.json" + sh "git log --pretty=format:\'{ \"commit\": \"%H\", \"subject\": \"%s\", \"timestamp\": \"%at\" } | awk \'BEGIN { print(\"[\") } { print(\$0\",\") } END { print(\"]\") }'' > ${WORKSPACE}/dist/stats/git.json" } }