Restore semicolons between commands in .travis.yml

This commit is contained in:
Dan Stillman 2016-09-18 18:36:14 -04:00
parent 822ab99a97
commit 6e80207941

View file

@ -15,8 +15,8 @@ notifications:
install: install:
# Use unbranded builds for 'release' and 'beta' # Use unbranded builds for 'release' and 'beta'
- if [ $FX_CHANNEL != "esr" ]; then - if [ $FX_CHANNEL != "esr" ]; then
URL="`curl -s https://wiki.mozilla.org/Addons/Extension_Signing | sed -n -r \"s/.+https?(:\/\/archive.mozilla.org[^ ]+\/mozilla-${FX_CHANNEL}-linux64-add-on-devel\/[0-9]+\/.+.bz2).+/https\1/p\"`" URL="`curl -s https://wiki.mozilla.org/Addons/Extension_Signing | sed -n -r \"s/.+https?(:\/\/archive.mozilla.org[^ ]+\/mozilla-${FX_CHANNEL}-linux64-add-on-devel\/[0-9]+\/.+.bz2).+/https\1/p\"`";
wget -O tarball "$URL" wget -O tarball "$URL";
fi fi
# Use official build for 'esr' # Use official build for 'esr'
- if [ $FX_CHANNEL == "esr" ]; then - if [ $FX_CHANNEL == "esr" ]; then