Better way to find home dir even if sudo is used.

This commit is contained in:
2024-09-13 17:09:21 +02:00
parent 913fbdb690
commit 48490673ea
2 changed files with 31 additions and 7 deletions

View File

@ -19,6 +19,10 @@ import (
)
func CmdNew(c *cli.Context) error {
if os.Getuid() != 0 {
golog.Fatalf("You need to run this command as root.")
}
name := strings.TrimSpace(c.String("name"))
domain := strings.TrimSpace(c.String("domain"))
customProjectPath := strings.TrimSpace(c.String("custom-path"))