better error msg language

This commit is contained in:
Michael Hobbs
2017-01-14 14:24:20 -08:00
parent dffbad49b4
commit 1a0c308b65

View File

@@ -40,7 +40,7 @@ func main() {
default:
dokkuNotImplementExitCode, err := strconv.Atoi(os.Getenv("DOKKU_NOT_IMPLEMENTED_EXIT"))
if err != nil {
fmt.Println("failed to parse DOKKU_NOT_IMPLEMENTED_EXIT")
fmt.Println("failed to retrieve DOKKU_NOT_IMPLEMENTED_EXIT environment variable")
dokkuNotImplementExitCode = 10
}
os.Exit(dokkuNotImplementExitCode)