Skip to content

Commit

Permalink
Fix illegal string value (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsolem committed Jun 1, 2021
1 parent 9ece07a commit bb740b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/acePushConfigToGit.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ void call(Map opts = [:]) {

target = readYaml file: 'target-data/target.yaml'
cfg = readYaml file: opts.aceFile ?: 'ace.yaml'
sh "gitOpsfolder=$(mktemp -d gitOpsXXXXXX)"
sh "gitOpsfolder=\$(mktemp -d gitOpsXXXXXX)"
Map gitops = cfg.gitops ?: [:]
String gitopsRepo = gitops.repo
String strategy = gitops.strategy ?: 'path'
Expand Down

0 comments on commit bb740b6

Please sign in to comment.