1 changed files with 11 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||
#!/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 |
|||
Loading…
Reference in new issue