Skip to content

Commit 1258ace

Browse files
Merge pull request #55 from ErikSchierboom/fix-travis-build
Fix failing Travis build
2 parents c5b049c + 45ac0ab commit 1258ace

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build.sh

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ toolsDirectory=$currentDirectory/tools
55
nugetDirectory=$toolsDirectory/nuget
66
nugetExe=$nugetDirectory/nuget.exe
77
fakeExe=$toolsDirectory/FAKE/tools/FAKE.exe
8-
nunitFrameworkDll=$toolsDirectory/NUnit/lib/nunit.framework.dll
8+
nunitFrameworkDll=$toolsDirectory/NUnit/lib/net45/nunit.framework.dll
99
nunitConsoleExe=$toolsDirectory/NUnit.Console/tools/nunit3-console.exe
1010

1111
if test ! -d $nugetDirectory; then
@@ -30,7 +30,7 @@ if test ! -f $fakeExe; then
3030
exit 1
3131
fi
3232

33-
mono $nugetExe install NUnit -Version 2.6.4 -ExcludeVersion -OutputDirectory $toolsDirectory
33+
mono $nugetExe install NUnit -Version 3.0.1 -ExcludeVersion -OutputDirectory $toolsDirectory
3434
if test ! -f $nunitFrameworkDll; then
3535
echo "Could not find nunit.framework.dll"
3636
exit 1

0 commit comments

Comments
 (0)