Skip to content

Commit ebcf904

Browse files
authored
Issue #18: fix process types parameter [semver:patch] (#25)
Process types were not picked up by the push-docker-image command, due to a missing back slash. This should fix that.
1 parent 42fd904 commit ebcf904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/push-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ steps:
3636
name: Push Docker image to Heroku
3737
command: |
3838
heroku container:push -a <<parameters.app-name>> \
39-
<<# parameters.recursive >>--recursive<</ parameters.recursive >>
39+
<<# parameters.recursive >>--recursive<</ parameters.recursive >> \
4040
<<# parameters.process-types>><<parameters.process-types>><</ parameters.process-types>>

0 commit comments

Comments
 (0)