12 lines
162 B
Plaintext
12 lines
162 B
Plaintext
|
#!/bin/bash
|
||
|
# configure
|
||
|
export CCLONE_PATH=$BASE/repos
|
||
|
export CCLONE_CACHE=$BASE/cache
|
||
|
export CONFIG_DIR=$BASE/config
|
||
|
|
||
|
function die(){
|
||
|
echo "$@" 1>&2
|
||
|
exit 1
|
||
|
}
|
||
|
|