Skip to content

Commit

Permalink
Merge pull request #85 from utilitywarehouse/template-provider-2.1.2
Browse files Browse the repository at this point in the history
sys: remove $$ escape from resources/cfssl-keys-and-certs-get
  • Loading branch information
ribbybibby authored Jun 14, 2019
2 parents 652a8a7 + 76d3e30 commit e9bf51a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/cfssl-keys-and-certs-get
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -o errexit

key() {
local key=$$1
local key=$1
/usr/bin/curl -Ls -o $${key} \
-H 'Authorization: Basic ${auth}' \
http://$(jq -r '.remotes.server | split(":")[0]' /etc/cfssl/config.json):8889/$${key}
Expand All @@ -18,7 +18,7 @@ key() {
}

cert () {
local cert=$$1
local cert=$1
/usr/bin/curl -Ls -o $${cert} \
-H 'Authorization: Basic ${auth}' \
http://$(jq -r '.remotes.server | split(":")[0]' /etc/cfssl/config.json):8889/$${cert}
Expand Down

0 comments on commit e9bf51a

Please sign in to comment.