diff options
author | Teddy Wing | 2015-01-11 19:03:56 -0500 |
---|---|---|
committer | Teddy Wing | 2015-01-11 19:03:56 -0500 |
commit | c93b9f1f135da82f7d126d4e940c716c7cc6c870 (patch) | |
tree | 1c60c36dcf54e7141f6f3b6e8c219d2936386d95 | |
parent | ea3a584741f18764d622cf4bd4e8940b4c2f346f (diff) | |
parent | 15bf95e6862ebb9bab17ee09b8e2886c746c9a70 (diff) | |
download | git-checkout-history-c93b9f1f135da82f7d126d4e940c716c7cc6c870.tar.bz2 |
Merge branch 'checkout-history-without-storage-file-bug'v0.1.1
-rw-r--r-- | utils/utils.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/utils.go b/utils/utils.go index 52af88a..5f686f7 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -70,7 +70,7 @@ func Branches() []string { file_path := getHomeDir() + "/" + history_file data, err := ioutil.ReadFile(file_path) if err != nil { - log.Fatal(err) + log.Fatal("ERROR: No checkout history file. Run `checkout-store` to create it.") } err = yaml.Unmarshal(data, &branchList) |