From e258613f276850e373009dfb838ac31e103a0011 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Tue, 2 Jun 2020 19:42:33 -0800 Subject: [PATCH] Fix bug with shellquote --- djpianalto.com/goff/exts/tags.go | 1 + 1 file changed, 1 insertion(+) diff --git a/djpianalto.com/goff/exts/tags.go b/djpianalto.com/goff/exts/tags.go index 435a28c..261e8d6 100644 --- a/djpianalto.com/goff/exts/tags.go +++ b/djpianalto.com/goff/exts/tags.go @@ -13,6 +13,7 @@ import ( func addTagCommand(ctx disgoman.Context, args []string) { if len(args) >= 1 { + fmt.Println(args) args, err := shellquote.Split(strings.Join(args, " ")) if err != nil { if strings.Contains(err.Error(), "Unterminated") {