gitlab.com/evatix-go/core@v1.3.55/internal/messages/messages.go (about) 1 package messages 2 3 const ( 4 HyphenedRwxRwxRwxLengthMustBe10 = "`-rwxrwxrwx` length must be 10. Reference : " + 5 "https://ss64.com/bash/chmod.html" 6 RwxRwxRwxLengthMustBe9 = "`rwxrwxrwx` length must be 9." 7 ModeCharShouldBeAllNumbersAndWithin0To7 = "mode char should be all digits and under 0 to 7" 8 DynamicFailedToParseToFloat64BecauseNull = "dynamic datatype failed to parse to float64 because it is nil." 9 FailedToCompileChmodhelperVarWrapperToWrapper = "Failed to compile chmodhelper.VarWrapper" + 10 " to failedToExecute.Wrapper." 11 FailedToGetFileModeRwx = "Failed to get the existing filemode (Rwx...)." 12 PathNotExist = "Path doesn't exist" 13 CannotVerifyEmptyContentsWhereValidatorsArePresent = "cannot verify empty text contents where validators are present" 14 )