diff options
| author | Nikolaus Gotsche <n@softwarefools.com> | 2018-10-08 21:44:05 +0200 |
|---|---|---|
| committer | Nikolaus Gotsche <n@softwarefools.com> | 2018-10-08 21:44:05 +0200 |
| commit | 3ad0c5806b34c508152a23de87f084faddd32e53 (patch) | |
| tree | 8f761ddc3bb37caea35ec62e9b628c06289493c6 /config.go | |
| parent | e9bad489128dd526b44b08cc3bed6cce1cb731da (diff) | |
Checking Bills as Paid
Diffstat (limited to 'config.go')
| -rw-r--r-- | config.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -79,7 +79,7 @@ func makeNewTOML(gibts bool) { if gibts { fmt.Println("Editing Configuration File\nPress [Enter] to keep the Current setting") }else{ - fmt.Println("Making new Configuration File") + fmt.Println("\nMaking new Configuration File") //Examplenames Coming soon n := "" file,err := homedir.Expand("~/.mywork.db") @@ -112,10 +112,11 @@ func makeNewTOML(gibts bool) { panic(err) }else{ //fmt.Println("Conffile:\n",buf.String()) - fmt.Println("Writing Configuration File") + fmt.Println("\nWriting Configuration File") err = ioutil.WriteFile(conffile, buf.Bytes(), 0644) checkErr(err) } + fmt.Println(" ") } |
