Skip to content
This repository has been archived by the owner on May 3, 2018. It is now read-only.

Commit

Permalink
Do not crash when flag not set
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Newton committed Nov 22, 2017
1 parent 6fff20a commit 67dd8bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func main() {

app.Action = func() {
if *isRunning == false {
log.Fatal("isRunning flag set to false, set to true and restart application if you are sure you want to load data")
log.Error("isRunning flag set to false, set to true and restart application if you are sure you want to load data")
return
}
splitConfig := strings.Split(*workspace, "/")
Expand Down

0 comments on commit 67dd8bb

Please sign in to comment.