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.
31 lines
494 B
31 lines
494 B
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
cd `dirname $0`
|
|
|
|
FSIARGS=""
|
|
OS=${OS:-"unknown"}
|
|
if [[ "$OS" != "Windows_NT" ]]
|
|
then
|
|
FSIARGS="--fsiargs -d:MONO"
|
|
fi
|
|
|
|
function run() {
|
|
if [[ "$OS" != "Windows_NT" ]]
|
|
then
|
|
mono "$@"
|
|
else
|
|
"$@"
|
|
fi
|
|
}
|
|
|
|
if [[ "$OS" != "Windows_NT" ]] && [ ! -e ~/.config/.mono/certs ]
|
|
then
|
|
mozroots --import --sync --quiet
|
|
fi
|
|
|
|
run .paket/paket.bootstrapper.exe
|
|
run .paket/paket.exe restore
|
|
run packages/build/FAKE/tools/FAKE.exe "$@" $FSIARGS build.fsx
|
|
|