-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdotdrop.sh
executable file
·38 lines (30 loc) · 974 Bytes
/
dotdrop.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env bash
ENV_DIR=${DOTDROP_VIRTUALENV:-}
# setup variables
args=("$@")
cur=$(cd "$(dirname "${0}")" && pwd)
opwd=$(pwd)
# pivot
cd "${cur}" || { echo "Directory \"${cur}\" doesn't exist, aborting." && exit 1; }
# init/update the submodule
if [ "${DOTDROP_AUTOUPDATE-yes}" = yes ] ; then
git submodule update --init --recursive
git submodule update --remote dotdrop
fi
# check Python executable
pybin="python3"
if [ -z "${ENV_DIR}" ]; then
hash ${pybin} 2>/dev/null || pybin="python"
[[ "$(${pybin} -V 2>&1)" =~ "Python 3" ]] || { echo "install Python 3" && exit 1; }
else
# virtualenv
pybin="${ENV_DIR}/bin/python"
fi
hash "${pybin}" 2>/dev/null || { echo "python executable not found" && exit 1; }
# launch `dotdrop`
PYTHONPATH=dotdrop:${PYTHONPATH} ${pybin} -m dotdrop.dotdrop "${args[@]}"
ret="$?"
# pivot back
cd "${opwd}" || { echo "Directory \"${opwd}\" doesn't exist, aborting." && exit 1; }
# exit with `dotdrop` exit code
exit ${ret}