Skip to content

Commit

Permalink
fix(colon): add missing semi-colon at line end
Browse files Browse the repository at this point in the history
  • Loading branch information
hahnec committed Oct 27, 2020
1 parent f82c92d commit 353cfb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ script:

# linux bundling (with wheel upload to pypi)
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
python3 -m coverage run tests/unit_test_all.py
python3 -m coverage run tests/unit_test_all.py;
bash plenopticam/scripts/bundling/py2bin.sh;
export RELEASE_PKG_FILE=$(ls dist/*.tar.gz);
pip3 install --upgrade twine;
Expand All @@ -69,15 +69,15 @@ script:
fi
# osx bundling
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
python3 -m coverage run tests/unit_test_all.py
python3 -m coverage run tests/unit_test_all.py;
npm install --global create-dmg;
bash plenopticam/scripts/bundling/pyinst2app.sh;
sleep 1;
export RELEASE_PKG_FILE=$(ls dist/*.dmg);
fi
# win bundling
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then
python -m coverage run tests/unit_test_all.py
python -m coverage run tests/unit_test_all.py;
pip3 install pypiwin32;
pip3 install pyinstaller --upgrade;
plenopticam/scripts/bundling/py2exe.bat;
Expand Down

0 comments on commit 353cfb1

Please sign in to comment.