If no argument is provided default to .

This commit is contained in:
2026-06-24 14:19:00 -04:00
parent 1e63040f92
commit bee4ed305e
6 changed files with 31 additions and 11 deletions

View File

@@ -9,7 +9,10 @@ import (
)
func Restart(cmd *cobra.Command, args []string) {
dir := args[0]
dir := "."
if len(args) > 0 {
dir = args[0]
}
if err := os.Chdir(dir); err != nil {
log.Fatal(err)
}