mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-24 07:17:18 +00:00
chore: only alias CXX to specific gcc versions on Linux (#755)
There is no `g++-4.8` binary in OS X in Travis CI anymore for some reason. Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
This commit is contained in:
parent
f28b5a859b
commit
c8ae05949c
@ -38,7 +38,7 @@ before_install:
|
||||
- rvm use $RUBY_VERSION
|
||||
|
||||
install:
|
||||
- if [ "$CXX" = "g++" ]; then
|
||||
- if [ "$CXX" = "g++" ] && [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||
export CXX="g++-4.8" CC="gcc-4.8";
|
||||
fi
|
||||
- gem install scss_lint
|
||||
|
Loading…
x
Reference in New Issue
Block a user