From 2dd148d8373b0b7a77abfb67d6d119f7f9e7c432 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Sat, 18 Jul 2026 07:35:56 +0800 Subject: [PATCH] fix: correct 'invlaid' to 'invalid' in path error message Corrects typo in cmd/get.go line 42 user-facing error message: 'invlaid path' -> 'invalid path' --- cmd/get.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/get.go b/cmd/get.go index 06cb006..34b9490 100644 --- a/cmd/get.go +++ b/cmd/get.go @@ -39,7 +39,7 @@ var getCmd = &cobra.Command{ if baseDir == "" { comps := strings.Split(repoUrl, "/") if len(comps) == 0 { - exitWithFormat("invlaid path: %v", repoUrl) + exitWithFormat("invalid path: %v", repoUrl) } baseDir = comps[len(comps)-1] }