Color for the "init success" message

This commit is contained in:
Jakob Unterwurzacher 2016-01-04 20:55:25 +01:00
parent e9ed3e85b9
commit 1936de783f
1 changed files with 3 additions and 1 deletions

View File

@ -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)
}