mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
17 lines
379 B
Plaintext
17 lines
379 B
Plaintext
set -eo pipefail
|
|
|
|
get_abs_filename() {
|
|
# $1 : relative filename
|
|
echo "$(cd "$(dirname "$1")" && pwd)/$(basename "$1")"
|
|
}
|
|
|
|
# Veilid location
|
|
VEILIDDIR=$(get_abs_filename "$(git rev-parse --show-toplevel)/../veilid")
|
|
if [ ! -d "$VEILIDDIR" ]; then
|
|
echo 'Veilid git clone needs to be at $VEILIDDIR'
|
|
exit 1
|
|
fi
|
|
|
|
# App location
|
|
APPDIR=$(git rev-parse --show-toplevel)
|