commit a9a13d6b393c5b0ed5f7b785f252924eebb132e7
| author | 斟酌 鵬兄 <tgckpg@gmail.com> |
| date | 2022-10-08T13:15:12Z |
| subject | Fixed spaces in path not working |
commit a9a13d6b393c5b0ed5f7b785f252924eebb132e7
Author: 斟酌 鵬兄 <tgckpg@gmail.com>
Date: 2022-10-08T13:15:12Z
Fixed spaces in path not working
---
bash/sources/40_go-command | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bash/sources/40_go-command b/bash/sources/40_go-command
index 4a11b03..2527940 100755
--- a/bash/sources/40_go-command
+++ b/bash/sources/40_go-command
@@ -45,7 +45,7 @@ function go() {
case "$ARG1" in
bug|build|clean|doc|env|fix|fmt|generate|get|install|list|mod|work|run|test|tool|version|vet|help)
_GO=$( which go )
- $_GO $@
+ "$_GO" $@
return $?
;;
p)