From f9b3d6304ce86a6f7ba3c17f4ae21a9610c9a73c Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 4 Jan 2023 00:25:12 -0500 Subject: [PATCH] spelling: uncommitted Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- scripts/ci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci.sh b/scripts/ci.sh index e61831e8..1d359c7c 100755 --- a/scripts/ci.sh +++ b/scripts/ci.sh @@ -11,12 +11,12 @@ # Use a console with emojis support for a better experience # Use venv to ensure that `python` calls the correct python version -# Stash uncommited changes +# Stash uncommitted changes MSG="pre-push-$(date +%s)"; git stash push -kum "$MSG" &>/dev/null ; STASH_LIST=$(git stash list); if [[ "$STASH_LIST" == *"$MSG"* ]]; then - echo "Uncommited changes stashed with message '$MSG', if you abort before they are restored run \`git stash pop\`"; + echo "Uncommitted changes stashed with message '$MSG', if you abort before they are restored run \`git stash pop\`"; fi restore_stashed() {