File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 22
22
23
23
# If before_install, install or before_script return a non-zero exit code, the build is errored and stops immediately.
24
24
before_install :
25
+ # get rid of possibly outdated dependencies
26
+ - sudo dpkg --remove --force-depends mintlib-m68k-atari-mint pml-m68k-atari-mint
25
27
- wget -q -O - https://github.com/freemint/travis-scripts/archive/master.tar.gz | tar xzf - --strip-components=1 -C .travis
26
28
- if [ -x .travis/before_install.sh ]; then ./.travis/before_install.sh; else true; fi
27
29
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