diff --git a/home/user/.config/zsh/functions b/home/user/.config/zsh/functions index 85846b6..4419c76 100644 --- a/home/user/.config/zsh/functions +++ b/home/user/.config/zsh/functions @@ -153,5 +153,6 @@ weather() { } gobuild() { - go build $@ -o . ./... + mkdir ./bin + go build $@ -o ./bin ./... }