File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 2222
2323# If before_install, install or before_script return a non-zero exit code, the build is errored and stops immediately.
2424before_install :
25+ # get rid of possibly outdated dependencies
26+ - sudo dpkg --remove --force-depends mintlib-m68k-atari-mint pml-m68k-atari-mint
2527 - wget -q -O - https://github.com/freemint/travis-scripts/archive/master.tar.gz | tar xzf - --strip-components=1 -C .travis
2628 - if [ -x .travis/before_install.sh ]; then ./.travis/before_install.sh; else true; fi
2729
Original file line number Diff line number Diff line change 1+ #! /bin/bash -eux
2+ # -e: Exit immediately if a command exits with a non-zero status.
3+ # -u: Treat unset variables as an error when substituting.
4+ # -x: Display expanded script commands
5+
6+ ./install_bintray.sh mintlib
You can’t perform that action at this time.
0 commit comments