Merge pull request #5344 from matrix-org/jryans/release-disable-editor

Skip editor confirmation of upgrades
pull/21833/head
J. Ryan Stinnett 2020-10-20 15:11:13 +01:00 committed by GitHub
commit 350c536cc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -32,9 +32,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