From 749205acc06879f68eb8927088e559dbd0fbfe6f Mon Sep 17 00:00:00 2001 From: thek4n Date: Tue, 11 Mar 2025 16:26:19 +0300 Subject: [PATCH] gobuild function --- home/user/.config/zsh/functions | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ./... }