2014-02-20 16:24:40 +00:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
2014-02-21 18:59:46 +00:00
|
|
|
[[ "$1" == "--sudo" ]] && prefix="sudo " && shift
|
2014-02-22 00:14:39 +00:00
|
|
|
[ "$DEBUG" ] && debug="-x"
|
2014-02-21 18:59:46 +00:00
|
|
|
|
2014-02-20 16:24:40 +00:00
|
|
|
kickstart compile $@
|
|
|
|
(
|
|
|
|
cd compile
|
2014-02-22 00:14:39 +00:00
|
|
|
$prefix bash $debug install.sh
|
2014-02-20 16:24:40 +00:00
|
|
|
)
|