From 27b0119dd2b5b7bb8716d5779d1ab7a8cdaafb2a Mon Sep 17 00:00:00 2001 From: Phil Tyler Date: Wed, 20 Dec 2023 22:45:34 -0800 Subject: [PATCH] fix reference to NEW_VERSION when it should be NEW_VERSION --- src/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions.sh b/src/functions.sh index 7a0fa32..aeaa24b 100644 --- a/src/functions.sh +++ b/src/functions.sh @@ -50,7 +50,7 @@ process_file(){ fi if [[ "$LC_FILE_PATH" == *"/package.json" ]]; then echo_info "Updating package with 'npm version'" - npm version "${NEW_DEV_VERSION}" --no-git-tag-version + npm version "${NEW_VERSION}" --no-git-tag-version git add "$FILE" git add "$(dirname "$FILE")/package-lock.json" return