uncomment first part of release.sh
This commit is contained in:
parent
42dbe14f36
commit
7600182a35
1 changed files with 24 additions and 24 deletions
48
release.sh
48
release.sh
|
@ -12,30 +12,30 @@ cd `dirname $0`
|
||||||
# This link seems to get eaten by the release process, so ensure it exists.
|
# This link seems to get eaten by the release process, so ensure it exists.
|
||||||
yarn link matrix-js-sdk
|
yarn link matrix-js-sdk
|
||||||
|
|
||||||
# for i in matrix-js-sdk
|
for i in matrix-js-sdk
|
||||||
# do
|
do
|
||||||
# echo "Checking version of $i..."
|
echo "Checking version of $i..."
|
||||||
# depver=`cat package.json | jq -r .dependencies[\"$i\"]`
|
depver=`cat package.json | jq -r .dependencies[\"$i\"]`
|
||||||
# latestver=`yarn info -s $i dist-tags.next`
|
latestver=`yarn info -s $i dist-tags.next`
|
||||||
# if [ "$depver" != "$latestver" ]
|
if [ "$depver" != "$latestver" ]
|
||||||
# then
|
then
|
||||||
# echo "The latest version of $i is $latestver but package.json depends on $depver."
|
echo "The latest version of $i is $latestver but package.json depends on $depver."
|
||||||
# echo -n "Type 'u' to auto-upgrade, 'c' to continue anyway, or 'a' to abort:"
|
echo -n "Type 'u' to auto-upgrade, 'c' to continue anyway, or 'a' to abort:"
|
||||||
# read resp
|
read resp
|
||||||
# if [ "$resp" != "u" ] && [ "$resp" != "c" ]
|
if [ "$resp" != "u" ] && [ "$resp" != "c" ]
|
||||||
# then
|
then
|
||||||
# echo "Aborting."
|
echo "Aborting."
|
||||||
# exit 1
|
exit 1
|
||||||
# fi
|
fi
|
||||||
# if [ "$resp" == "u" ]
|
if [ "$resp" == "u" ]
|
||||||
# then
|
then
|
||||||
# echo "Upgrading $i to $latestver..."
|
echo "Upgrading $i to $latestver..."
|
||||||
# yarn add -E $i@$latestver
|
yarn add -E $i@$latestver
|
||||||
# git add -u
|
git add -u
|
||||||
# git commit -m "Upgrade $i to $latestver"
|
git commit -m "Upgrade $i to $latestver"
|
||||||
# fi
|
fi
|
||||||
# fi
|
fi
|
||||||
# done
|
done
|
||||||
|
|
||||||
./node_modules/matrix-js-sdk/release.sh -z "$@"
|
./node_modules/matrix-js-sdk/release.sh -z "$@"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue