summary refs log tree commit diff stats
path: root/install.sh.template
blob: 1292abdab5aae0883cd639bfe440656ef19e7e5c (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e
set -x

if [ "$1" != "" ]; then
	exec ./koch install "$1"
else
	exec ./koch install
fi