From 78dd07cbfd6aba2425082877f03bd661378f606a Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Tue, 20 Oct 2020 11:57:02 +0100 Subject: [PATCH] Skip editor confirmation of upgrades In practice, the upgrades are always fine, and this editor prompt just adds delays. --- release.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/release.sh b/release.sh index 79da93013..a5fb90069 100755 --- a/release.sh +++ b/release.sh @@ -38,9 +38,7 @@ do echo "Upgrading $i to $latestver..." yarn add -E $i@$latestver git add -u - # The `-e` flag opens the editor and gives you a chance to check - # the upgrade for correctness. - git commit -m "Upgrade $i to $latestver" -e + git commit -m "Upgrade $i to $latestver" fi fi done