github.com/SAP/cloud-mta-build-tool@v1.2.27/internal/exec/exec_msg.go (about)

     1  package exec
     2  
     3  const (
     4  	execMsg               = `executing the "%s" command...`
     5  	execFileMsg           = `the executable file is at "%s"`
     6  	execFailed            = `could not execute the "%s" command`
     7  	execFailedOnStdoutMsg = `could not get the "stdout" pipe`
     8  	execFailedOnStderrMsg = `could not get the "stderr" pipe`
     9  	// ExecInvalidTimeoutMsg is the error message that occurs when a timeout value is invalid
    10  	ExecInvalidTimeoutMsg = `invalid timeout value "%s", it should be in the form "[123h][123m][123s]"`
    11  	// ExecTimeoutMsg is the error message that occurs when a timeout is reached during commands execution
    12  	ExecTimeoutMsg = `the build timed out after %s`
    13  	execKilledMsg  = `the process was interrupted`
    14  )