mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-17 12:42:16 +01:00
Fix google chrome env var error message (#68)
This commit is contained in:
committed by
Julien Neuhart
parent
194670c3bf
commit
719287c3a6
@@ -37,7 +37,7 @@ func mustParseEnvVar() *api.Options {
|
|||||||
}
|
}
|
||||||
if v, ok := os.LookupEnv(disableGoogleChromeEnvVar); ok {
|
if v, ok := os.LookupEnv(disableGoogleChromeEnvVar); ok {
|
||||||
if v != "1" && v != "0" {
|
if v != "1" && v != "0" {
|
||||||
notify.ErrPrint(fmt.Errorf("%s: wrong value: want \"0\" or \"1\" got %v", defaultWaitTimeoutEnvVar, v))
|
notify.ErrPrint(fmt.Errorf("%s: wrong value: want \"0\" or \"1\" got %v", disableGoogleChromeEnvVar, v))
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
opts.EnableChromeEndpoints = v != "1"
|
opts.EnableChromeEndpoints = v != "1"
|
||||||
|
|||||||
Reference in New Issue
Block a user