chore(scaffolder): Should be Fatal not Panic

This commit is contained in:
blam
2020-02-07 09:36:26 +01:00
parent e238860186
commit 1157e333ad
+1 -1
View File
@@ -19,7 +19,7 @@ func NewGithubClient() *Github {
accessToken := os.Getenv("BOSS_GH_ACCESS_TOKEN")
if accessToken == "" {
log.Panic("No BOSS_GH_ACCESS_TOKEN set. Cannot continue")
log.Fatal("No BOSS_GH_ACCESS_TOKEN set. Cannot continue")
}
ctx := context.Background()