2014-02-20 13:24:40 -03:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
2014-02-21 15:59:46 -03:00
|
|
|
[[ "$1" == "--sudo" ]] && prefix="sudo " && shift
|
|
|
|
|
2014-02-20 13:24:40 -03:00
|
|
|
kickstart compile $@
|
|
|
|
(
|
|
|
|
cd compile
|
2014-02-21 15:59:46 -03:00
|
|
|
$prefix bash install.sh
|
2014-02-20 13:24:40 -03:00
|
|
|
)
|