From ccc23f6d5674def3970f470b6aaa948c07f3438b Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Tue, 2 Jan 2024 09:17:38 -0700 Subject: [PATCH] removed redundant flag --- action.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.sh b/action.sh index b69b065..f5445d7 100755 --- a/action.sh +++ b/action.sh @@ -2,7 +2,7 @@ apt update apt install jq -y CURRENT_VERSION=$(jq -r .version package.json) echo $CURRENT_VERSION -PREVIOUS_VERSIONS=$(git tag -l) +PREVIOUS_VERSIONS=$(git tag) echo $PREVIOUS_VERSIONS if [[ $PREVIOUS_VERSIONS == *$CURRENT_VERSION* ]];