From 368d8ada81179fb4eaff49700055e18a0cc67d0f Mon Sep 17 00:00:00 2001 From: Nathan Allen Date: Sun, 11 Jun 2023 13:26:50 -0400 Subject: [PATCH] fix: version script --- cmd/brew-hops | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/brew-hops b/cmd/brew-hops index 0622391..3c6fa21 100755 --- a/cmd/brew-hops +++ b/cmd/brew-hops @@ -45,7 +45,7 @@ BLUARW=$'\e[1;34m==>\e[0m' # Prints the latest git tag. # ----------------------------------------------- print_version() { - echo "v$(git describe --tags --abbrev=0)" + git describe --tags --abbrev=0 } # -----------------------------------------------