Skip to content

Commit 2070dbc

Browse files
authored
Override base /usr/bin in windows
1 parent ea0d9d0 commit 2070dbc

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,11 @@ before_install:
2222
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install cppcheck; fi
2323
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then export CFLAGS='-mtune=generic'; fi
2424
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then
25-
ls -R /usr/src/ ;
2625
curl https://s3.amazonaws.com/libhttpserver/travis_stuff/msys64.tar.gz -o msys64.tar.gz ;
2726
tar -xzf msys64.tar.gz ;
28-
cp -R msys64/* /c/ProgramData/chocolatey/lib/mingw/tools/install/mingw64/ ;
29-
ls /c/ProgramData/chocolatey/lib/mingw/tools/install/mingw64/ ;
30-
export PATH=/c/ProgramData/chocolatey/lib/mingw/tools/install/mingw64/usr/bin:$PATH ;
27+
ls /bin ;
28+
ls /usr/bin ;
29+
cp -R msys64/* / ;
3130
fi
3231
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then pacman -Syuu; fi
3332
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then pacman -S --needed base-devel; fi

0 commit comments

Comments
 (0)