csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
316 B
11 lines
316 B
#!/bin/bash
|
|
if test "$OS" = "Windows_NT"
|
|
then
|
|
# use .Net
|
|
[ ! -f tools/paket/paket.exe ] && tools/paket/paket.bootstrapper.exe
|
|
tools/paket/paket.exe $@
|
|
else
|
|
# use mono
|
|
[ ! -f tools/paket/paket.exe ] && mono --runtime=v4.0 tools/paket/paket.bootstrapper.exe
|
|
mono --runtime=v4.0 tools/paket/paket.exe $@
|
|
fi
|
|
|