fix: goss.yaml

This commit is contained in:
Denis Gukov 2021-08-26 14:38:34 +05:00
parent ee625eb93f
commit d27c89790b
2 changed files with 3 additions and 4 deletions

View File

@ -38,7 +38,6 @@ command:
semaphore:
exit-status: 1
stdout:
- Cannot Find configuration! Use --config parameter to point to a JSON file generated
by setup.
- 'Hint: have you run `semaphore setup` ?'
- Cannot Find configuration! Use --config parameter to point to a JSON file generated by setup.
- 'Hint: have you run `semaphore setup`?'
timeout: 10000

View File

@ -178,7 +178,7 @@ func validatePort() {
func exitOnConfigError(err error) {
if err != nil {
fmt.Println("Cannot Find configuration! Use --config parameter to point to a JSON file generated by setup.\n\n Hint: have you run `semaphore setup` ?")
fmt.Println("Cannot Find configuration! Use --config parameter to point to a JSON file generated by setup.\n\nHint: have you run `semaphore setup`?")
os.Exit(1)
}
}