Sha256: 8f5d1cb6597da0dfe071f7ca25a1ba0c5532965274a6e85f6149ac7e6f394da1
Contents?: true
Size: 796 Bytes
Versions: 15
Compression:
Stored size: 796 Bytes
Contents
require 'blocks/has_execute_command' module Bake module Blocks class CommandLine include HasExecuteCommand def initialize(config, referencedConfigs) @config = config # Bake::Metamodel::CommandLine @commandLine = config.name @projectDir = config.get_project_dir end def execute return executeCommand(@commandLine, nil, @config.validExitCodes) end def startupStep return executeCommand(@commandLine, nil, @config.validExitCodes) end def exitStep return executeCommand(@commandLine, nil, @config.validExitCodes) end def clean # nothing to do here return true end end end end
Version data entries
15 entries across 15 versions & 1 rubygems