EDIT:
The Meteor team added a release
parameter to their download endpoint. Now you can simply specify the desired version:
curl "https://install.meteor.com/?release=1.3.3.1" | sh
For Windows, a version
parameter exists for the choco
installer:
choco install meteor --version 1.3.3.1
Original solution
You can use sed
for that. Insert it in the middle of curl
and sh
:
curl https://install.meteor.com/ | sed 's/1.4/1.3.3.1/' | sh
That will replace the release 1.4 (current version) to 1.3.3.1
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…