Sha256: 1f1f3c4cb38872d880d4ae8f31987467636fc74526f49b6a4ccad358655cfe5f

Contents?: true

Size: 976 Bytes

Versions: 7

Compression:

Stored size: 976 Bytes

Contents

module Bake
  
  module Blocks
  
    module HasExecuteCommand
      
      def executeCommand(commandLine, ignoreStr=nil, exitCodeArray = [0])
        puts commandLine if Bake.options.verbose >= 1
        puts "(executed in '#{@projectDir}')" if Bake.options.verbose >= 3
        cmd_result = false
        output = ""
        begin
          Dir.chdir(@projectDir) do
            cmd_result, output = ProcessHelper.run([commandLine], true, true, nil, exitCodeArray)
          end
        rescue Exception=>e
          puts e.message
          puts e.backtrace if Bake.options.debug
        end
          
        if (cmd_result == false and (not ignoreStr or not output.include?ignoreStr))
          Bake.formatter.printError("Command \"#{commandLine}\" failed", @config)
          puts "(executed in '#{@projectDir}')" if Bake.options.verbose >= 3
          raise SystemCommandFailed.new
        end
      end
          
    end
    
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
bake-toolkit-2.10.1 lib/blocks/has_execute_command.rb
bake-toolkit-2.10.0 lib/blocks/has_execute_command.rb
bake-toolkit-2.9.2 lib/blocks/has_execute_command.rb
bake-toolkit-2.9.1 lib/blocks/has_execute_command.rb
bake-toolkit-2.9.0 lib/blocks/has_execute_command.rb
bake-toolkit-2.8.0 lib/blocks/has_execute_command.rb
bake-toolkit-2.7.0 lib/blocks/has_execute_command.rb