fix: correct uncommitted spelling in release script

This commit is contained in:
luojiyin
2026-03-05 12:13:10 +08:00
parent 29d01f4245
commit 089cf54ff3
+3 -3
View File
@@ -43,9 +43,9 @@ writeShellApplication {
fi
# Ensure there are no uncommitted or unpushed changes
uncommited_changes=$(git diff --compact-summary)
if [[ -n "$uncommited_changes" ]]; then
echo -e "There are uncommited changes, exiting:\n''${uncommited_changes}" >&2
uncommitted_changes=$(git diff --compact-summary)
if [[ -n "$uncommitted_changes" ]]; then
echo -e "There are uncommitted changes, exiting:\n''${uncommitted_changes}" >&2
exit 1
fi
git pull https://github.com/nix-community/disko master