Files
Nim/install.sh.template
Philip Wernersbach 6b088938f7 Add build scripts.
2014-12-11 23:36:42 -05:00

10 lines
104 B
Bash

#!/bin/sh
set -e
set -x
if [ "$1" != "" ]; then
exec ./koch install "$1"
else
exec ./koch install
fi