Skip to content

Commit

Permalink
Merge pull request #54 from abernier/master
Browse files Browse the repository at this point in the history
surrounded quotes for multi-lines build-args values
  • Loading branch information
AkhileshNS committed Jan 8, 2021
2 parents bf72a2f + 241a429 commit 5de928f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ if (heroku.appdir) {
if (heroku.dockerBuildArgs) {
heroku.dockerBuildArgs = heroku.dockerBuildArgs
.split("\n")
.map((arg) => `${arg}=${process.env[arg]}`)
.map((arg) => `${arg}="${process.env[arg]}"`)
.join(",");
heroku.dockerBuildArgs = heroku.dockerBuildArgs
? `--arg ${heroku.dockerBuildArgs}`
Expand Down

0 comments on commit 5de928f

Please sign in to comment.