large changes

This commit is contained in:
2026-01-04 16:27:39 -05:00
parent 608a083861
commit 0a0b1fa8c3
12 changed files with 273 additions and 109 deletions

View File

@@ -118,11 +118,12 @@ Check out [Fes's docs](https://docs.vxserver.dev/static/fes.html).`, "$$", "`"),
ui.Hint("you can run this with `fes run %s`", dir)
fmt.Println("Created new Fes project at", func() string {
if res, err := filepath.Abs(dir); err == nil {
return res
fmt.Println("Created new Fes project at", func () string {
if cwd, err := os.Getwd(); err != nil {
return dir
} else {
return cwd
}
return dir
}())
return nil