commit | 94ab8e821d7b835b8f6e747703b04053fd310308 | [log] [tgz] |
---|---|---|
author | June Tate-Gans <jtgans@google.com> | Fri May 29 17:01:46 2020 -0400 |
committer | June Tate-Gans <jtgans@google.com> | Fri May 29 17:02:26 2020 -0400 |
tree | b0a877e0c72cd1debf72de86d2c468d25f4210c6 | |
parent | d1da191a90164938c5817c3e95b0875533a980ba [diff] |
Fix another typo Change-Id: I0e7147254b3a7dcae24e12581ba7c9427c173cf4
diff --git a/cicd/pipelines/tasks/task_publish_unstable.jenkins b/cicd/pipelines/tasks/task_publish_unstable.jenkins index 83521bc..70fd254 100644 --- a/cicd/pipelines/tasks/task_publish_unstable.jenkins +++ b/cicd/pipelines/tasks/task_publish_unstable.jenkins
@@ -15,11 +15,11 @@ } String getKeygripId() { - def script = """ + def script = ''' gpg --no-default-keyring --keyring=release-keyring.gpg --with-colons --list-secret-keys \ - | awk -F: '$1 == "grp" { print $10 }' \ + | awk -F: '$1 == "grp" { print $10 }' \ | head -n1 - """ + ''' return sh(returnStdout: true, script: script).trim() }