github.com/SAP/cloud-mta-build-tool@v1.2.27/internal/buildops/buildops_msg.go (about) 1 package buildops 2 3 const ( 4 // WrongBuildResultMsg - message raised on wrong build result 5 WrongBuildResultMsg = `the build result must be a string; change "%v" in the "%s" module for a string value` 6 // WrongBuildArtifactNameMsg - message raised on wrong build artifact name 7 WrongBuildArtifactNameMsg = `the build artifact name must be a string; change "%v" in the "%s" module for a string value` 8 wrongPathMsg = `could not find the "%s" module path` 9 reqFailedOnModuleGetMsg = `could not process requirements of the "%s" module that is based on the "%s" module when getting the "%s" module` 10 reqFailedOnCommandsGetMsg = `could not process requirements of the "%s" module that is based on the "%s" module when getting the "%s" module commands` 11 reqFailedOnBuildResultMsg = `could not process requirements of the "%s" module that is based on the "%s" module when getting the build results path` 12 reqFailedOnCopyMsg = `could not process requirements of the "%s" module that is based on the "%s" module when copying artifacts` 13 14 locFailedMsg = `could not provide modules when initializing the location` 15 circularDepsMsg = `circular dependency found between modules "%s" and "%s"` 16 )