Browse Source

Build: add paket.sh file for simpler usage

pull/312/head
Christoph Ruegg 11 years ago
parent
commit
39cb114d60
  1. 11
      paket.sh

11
paket.sh

@ -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…
Cancel
Save