11 lines
161 B
Bash
Executable File
11 lines
161 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
[[ "$1" == "--sudo" ]] && prefix="sudo " && shift
|
|
[ "$DEBUG" ] && debug="-x"
|
|
|
|
kickstart compile $@
|
|
(
|
|
cd compile
|
|
$prefix bash $debug install.sh
|
|
)
|