1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

newline for stats

This commit is contained in:
Fedor Katurov 2020-06-05 14:05:02 +07:00
parent 901f1ed760
commit c18d9e43f0

2
Jenkinsfile vendored
View file

@ -35,7 +35,7 @@ pipeline {
stage('stats') { stage('stats') {
steps { steps {
sh "mkdir -p ${WORKSPACE}/dist/stats" sh "mkdir -p ${WORKSPACE}/dist/stats"
sh "git log -n 50 --pretty=format:\' { \"commit\": \"%H\", \"subject\": \"%s\", \"timestamp\": \"%at\" }\' | awk \'BEGIN { print(\"[\") } { print(\$0\",\") } END { print(\"]\") }\' > ${WORKSPACE}/dist/stats/git.json" sh "git log -n 50 --pretty=format:\' { \"commit\": \"%H\", \"subject\": \"%s\", \"timestamp\": \"%at\" }\' | awk \'BEGIN { print(\"[\") } { print(\$0\",\") } END { print(\" {}\n]\") }\' > ${WORKSPACE}/dist/stats/git.json"
} }
} }