Skip to content

Commit 2f91a31

Browse files
committed
fix typos in release script
1 parent ffb71f7 commit 2f91a31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/create-release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ if [[ "$(git symbolic-ref --short HEAD)" != "main" ]]; then
1717
fi
1818

1919
# ensure we are up-to-date
20-
uncommited_changes=$(git diff --compact-summary)
21-
if [[ -n "$uncommited_changes" ]]; then
22-
echo -e "There are uncommited changes, exiting:\n${uncommited_changes}" >&2
20+
uncommitted_changes=$(git diff --compact-summary)
21+
if [[ -n "$uncommitted_changes" ]]; then
22+
echo -e "There are uncommitted changes, exiting:\n${uncommitted_changes}" >&2
2323
exit 1
2424
fi
2525
git pull [email protected]:nix-community/nix-ld main

0 commit comments

Comments
 (0)