fix: pass in correct image variable

This commit is contained in:
Jose Diaz-Gonzalez
2020-08-31 04:23:10 -04:00
parent 9aab7dce7d
commit 428beb3413

View File

@@ -119,7 +119,7 @@ func executeScript(appName string, imageTag string, phase string) error {
command := ""
phaseSource := ""
if phase == "release" {
command = getReleaseCommand(appName, imageTag)
command = getReleaseCommand(appName, image)
phaseSource = "Procfile"
} else {
var err error