diff options
Diffstat (limited to 'cmds/cd.go')
-rw-r--r-- | cmds/cd.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ import "os" // chDir: changes the current working directory // if no directory is specifed sets it to home -func chDir(args []string) error { +func ChDir(args []string) error { var dir string if len(args) == 1 { dir, _ = os.UserHomeDir() |