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