forked from github/server
11 lines
111 B
Bash
11 lines
111 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
PATH=$ERESSEA/bin:$PATH
|
||
|
|
||
|
function abort() {
|
||
|
if [ $# -gt 0 ]; then
|
||
|
echo $@
|
||
|
fi
|
||
|
exit -1
|
||
|
}
|