Skip to content

Commit

Permalink
fix(core): Explicitly convert -var-file GString to String to avoid CC…
Browse files Browse the repository at this point in the history
…E on json serialization to redis. (#207)
  • Loading branch information
Matt Duftler authored Jun 1, 2017
1 parent f41f278 commit b735a17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class LocalJobFriendlyPackerCommandFactory implements PackerCommandFactory {
}

if (absoluteVarFilePath) {
packerCommand << "-var-file=$absoluteVarFilePath"
packerCommand << "-var-file=$absoluteVarFilePath".toString()
}

packerCommand << absoluteTemplateFilePath
Expand Down

0 comments on commit b735a17

Please sign in to comment.