diff options
Diffstat (limited to 'utils')
| -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) | 
