diff options
author | Jakob Unterwurzacher | 2016-01-04 20:55:25 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-01-04 20:55:25 +0100 |
commit | 1936de783f172335c0705bfee3116b050057723c (patch) | |
tree | 038e85059800c8f6cdbaec12ff791dc07a3a2eb6 | |
parent | e9ed3e85b944667c4f6659e8dc9887a6251ba037 (diff) |
Color for the "init success" message
-rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -72,7 +72,9 @@ func initDir(args *argContainer) { } } - cryptfs.Info.Printf("The filesystem is now ready for mounting.\n") + cryptfs.Info.Printf(colorGreen+"The filesystem has been created successfully.\n"+colorReset) + cryptfs.Info.Printf(colorGrey+"You can now mount it using: %s %s MOUNTPOINT\n"+colorReset, + PROGRAM_NAME, args.cipherdir) os.Exit(0) } |