treat as one line

This commit is contained in:
Jay Lee
2020-03-29 18:10:54 -04:00
parent d23003ab0c
commit 615d571aef

View File

@@ -100,16 +100,16 @@ jobs:
before_install:
- if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
export GAMOS="macos"
export GAMOS="macos";
else
export GAMOS="${TRAVIS_OS_NAME}"
export GAMOS="${TRAVIS_OS_NAME}";
fi
- if [ "${TRAVIS_CPU_ARCH}" == "amd64" ]; then
export PLATFORM="x86_64"
export PLATFORM="x86_64";
elif [ "${TRAVIS_OS_NAME}" == "Windows 32-bit" ]; then
export PLATFORM="x86"
export PLATFORM="x86";
else
export PLATFORM="${TRAVIS_OS_NAME}"
export PLATFORM="${TRAVIS_OS_NAME}";
fi
- source src/travis/${TRAVIS_OS_NAME}-before-install.sh