Skip editor confirmation of upgrades

In practice, the upgrades are always fine, and this editor prompt just adds
delays.
pull/15506/head
J. Ryan Stinnett 2020-10-20 11:57:02 +01:00
parent 69c7d08941
commit 78dd07cbfd
1 changed files with 1 additions and 3 deletions

View File

@ -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