Skip to content

Commit

Permalink
fix: ApplySourceToImageHook now correctly sets the autoDeployEnabled …
Browse files Browse the repository at this point in the history
…field.
  • Loading branch information
iocanel committed Dec 18, 2018
1 parent 04c81a8 commit 1ed1de8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -30,6 +30,6 @@ public class ApplySourceToImageHook extends Configurator<S2iConfigFluent> {
public void visit(S2iConfigFluent config) {
config
.withAutoBuildEnabled(Boolean.parseBoolean(System.getProperty(AP4K_BUILD, String.valueOf(config.isAutoBuildEnabled()))))
.withAutoBuildEnabled(Boolean.parseBoolean(System.getProperty(AP4K_DEPLOY, String.valueOf(config.isAutoBuildEnabled()))));
.withAutoDeployEnabled(Boolean.parseBoolean(System.getProperty(AP4K_DEPLOY, String.valueOf(config.isAutoDeployEnabled()))));
}
}

0 comments on commit 1ed1de8

Please sign in to comment.