aboutsummaryrefslogtreecommitdiff
path: root/cmd/myshell
diff options
context:
space:
mode:
authorjet2tlf <jet2tlf@gmail.com>2024-05-31 04:50:45 +0000
committerjet2tlf <jet2tlf@gmail.com>2024-05-31 04:50:45 +0000
commit6eb5e0a690a0311ecdeb245cc16b4b9ad30a124f (patch)
treebfafed21659b288d53714b96febb55b4339b8448 /cmd/myshell
parent9f711b3839d5e7cf769c39b573bbe27be3b9e345 (diff)
downloadshell-go-6eb5e0a690a0311ecdeb245cc16b4b9ad30a124f.tar.gz
shell-go-6eb5e0a690a0311ecdeb245cc16b4b9ad30a124f.zip
pass 11st stage
Diffstat (limited to 'cmd/myshell')
-rw-r--r--cmd/myshell/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/myshell/main.go b/cmd/myshell/main.go
index 65d2eb4..4609ce7 100644
--- a/cmd/myshell/main.go
+++ b/cmd/myshell/main.go
@@ -60,7 +60,7 @@ func Cd(dir string) {
err := os.Chdir(p)
if err != nil {
- fmt.Printf("cd: %s: No such file or directory\n", p)
+ fmt.Printf("%s: No such file or directory\n", p)
}
}