Ejemplo n.º 1
0
 @Override
 public ShellCommands toScript(Combination combination, BuildType buildType) {
   return BuildType.DockerLocal.equals(buildType)
       ? ShellCommands.NOOP
       : super.toScript(combination, buildType);
 }
Ejemplo n.º 2
0
 @Override
 public ShellCommands toScript(Combination combination, BuildType buildType) {
   return BuildType.DockerLocal.equals(buildType)
       ? ShellCommands.NOOP
       : new ShellCommands(getEnvVariablesExportCommands());
 }