mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
simplfy scripts
Signed-off-by: Rolf Eike Beer <eike@sf-mail.de>
This commit is contained in:
parent
41410fe218
commit
0fb66fc91f
2 changed files with 2 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ ! -z $TRAVIS_BRANCH ] && [ "$TRAVIS_BRANCH" != "master" ] ; then
|
||||
if [ -n $TRAVIS_BRANCH ] && [ "$TRAVIS_BRANCH" != "master" ] ; then
|
||||
export UPLOADTOOL_SUFFIX=$TRAVIS_BRANCH
|
||||
fi
|
||||
|
||||
|
|
|
@ -13,8 +13,7 @@ pushd ${TRAVIS_BUILD_DIR}/..
|
|||
echo "Downloading prebuilt MXE environment from Subsurface-divelog.org"
|
||||
wget -q http://subsurface-divelog.org/downloads/mxe-994ad473.tar.xz
|
||||
mkdir -p mxe
|
||||
cd mxe
|
||||
tar xJf ../mxe-994ad473.tar.xz
|
||||
tar xJ -C mxe -f mxe-994ad473.tar.xz
|
||||
|
||||
# hack around path dependency - needs to be fixed
|
||||
sudo mkdir -p /data/winqt551/
|
||||
|
|
Loading…
Reference in a new issue