26 lines
772 B
Bash
Executable File
26 lines
772 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# From https://stackoverflow.com/questions/59895/getting-the-source-directory-of-a-bash-script-from-within
|
|
SOURCE="${BASH_SOURCE[0]}"
|
|
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
|
SOURCE="$(readlink "$SOURCE")"
|
|
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
|
|
done
|
|
APPPATH="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
|
|
|
pushd . >/dev/null
|
|
cd "$APPPATH" || exit
|
|
|
|
if [ -d "$APPPATH/.venv" ]; then
|
|
source "$APPPATH/.venv/bin/activate"
|
|
fi
|
|
|
|
"$APPPATH/bagheerasearch.py" "$@"
|
|
|
|
if [ -n "$VIRTUAL_ENV" ]; then
|
|
deactivate
|
|
fi
|
|
|
|
popd >/dev/null || exit
|