From 985847db9e5af552d1cc89ec09bc15f32f08ef65 Mon Sep 17 00:00:00 2001 From: Alex Garcia Date: Sat, 27 Apr 2024 12:54:26 -0700 Subject: [PATCH] publish-release allow sqlite-dist.toml edits --- scripts/publish-release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/publish-release.sh b/scripts/publish-release.sh index af704d0..0bfecc1 100755 --- a/scripts/publish-release.sh +++ b/scripts/publish-release.sh @@ -2,8 +2,8 @@ set -euo pipefail xtrace -if [[ -n $(git status --porcelain | grep -v VERSION) ]]; then - echo "❌ There are other un-staged changes to the repository besides VERSION" +if [[ -n $(git status --porcelain | grep -v VERSION | grep -v sqlite-dist.toml) ]]; then + echo "❌ There are other un-staged changes to the repository besides VERSION and sqlite-dist.toml" exit 1 fi