Skip to content
Snippets Groups Projects
Commit d9ae3fa4 authored by Jakob Kaiser's avatar Jakob Kaiser
Browse files

fix: remove newline from build cache name of failed stable build

Change-Id: I3311ef858f140d39d2e793dd55ab4a368f421aa8
parent 862dcca6
No related branches found
No related tags found
No related merge requests found
......@@ -231,5 +231,5 @@ pipeline {
}
String get_build_cache_on_failure_name() {
return (CONTAINER_BUILD_TYPE == "testing" ? "c${GERRIT_CHANGE_NUMBER}p${GERRIT_PATCHSET_NUMBER}" : jesh(script: "echo 'stable_\$(date --iso)'", returnStdout: true))
return (CONTAINER_BUILD_TYPE == "testing" ? "c${GERRIT_CHANGE_NUMBER}p${GERRIT_PATCHSET_NUMBER}" : jesh(script: "echo -n 'stable_\$(date --iso)'", returnStdout: true))
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment