Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 31cc376

Browse files
committed
Skip editor confirmation of upgrades
In practice, the upgrades are always fine, and this editor prompt just adds delays.
1 parent 5987126 commit 31cc376

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

release.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ do
3232
echo "Upgrading $i to $latestver..."
3333
yarn add -E $i@$latestver
3434
git add -u
35-
# The `-e` flag opens the editor and gives you a chance to check
36-
# the upgrade for correctness.
37-
git commit -m "Upgrade $i to $latestver" -e
35+
git commit -m "Upgrade $i to $latestver"
3836
fi
3937
fi
4038
done

0 commit comments

Comments
 (0)