chore: show the actual location in "config not found" error (#179)

This commit is contained in:
Daniel Barton 2024-06-30 02:26:59 +08:00 committed by GitHub
parent ad1ae862a9
commit 5a15612754
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -440,18 +440,18 @@ in all copies or substantial portions of the Software.%s`), system.Version, time
} }
func exitWithConfigurationNotice() { func exitWithConfigurationNotice() {
fmt.Print(colorstring.Color(` fmt.Printf(colorstring.Color(`
[_red_][white][bold]Error: Configuration File Not Found[reset] [_red_][white][bold]Error: Configuration File Not Found[reset]
Wings was not able to locate your configuration file, and therefore is not Wings was not able to locate your configuration file, and therefore is not
able to complete its boot process. Please ensure you have copied your instance able to complete its boot process. Please ensure you have copied your instance
configuration file into the default location below. configuration file into the default location below.
Default Location: /etc/pterodactyl/config.yml Default Location: %s
[yellow]This is not a bug with this software. Please do not make a bug report [yellow]This is not a bug with this software. Please do not make a bug report
for this issue, it will be closed.[reset] for this issue, it will be closed.[reset]
`)) `), config.DefaultLocation)
os.Exit(1) os.Exit(1)
} }