We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1a0799 commit c9fb845Copy full SHA for c9fb845
.travis.yml
@@ -10,7 +10,7 @@ mono:
10
install:
11
12
script:
13
- - ./autogen.sh
+ - ./travis-autogen.sh
14
- make
15
- sudo make install
16
- xbuild ./src/fsharp-library-unittests-build.proj /p:TargetFramework=net40 /p:Configuration=Release
travis-autogen.sh
@@ -4,7 +4,8 @@ if [[ $TRAVIS_OS_NAME == osx ]];
4
then
5
monoVer=$(mono --version | head -n 1 | cut -d' ' -f 5)
6
prefix="/Library/Frameworks/Mono.framework/Versions/$monoVer";
7
- else prefix="/usr";
+ else
8
+ prefix="/usr";
9
fi
./autogen.sh --prefix=$prefix
0 commit comments