kickstart/lib/kickstart-local

11 lines
163 B
Plaintext
Raw Normal View History

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-21 21:14:39 -03:00
[ "$DEBUG" ] && debug="-x"
2014-02-21 15:59:46 -03:00
2015-05-20 17:16:16 -03:00
kickstart compile "$@"
2014-02-20 13:24:40 -03:00
(
cd compile
2014-02-21 21:14:39 -03:00
$prefix bash $debug install.sh
2014-02-20 13:24:40 -03:00
)