use python as interpreter

This commit is contained in:
Philip Henning 2024-03-12 19:42:22 +01:00
parent d1f9072855
commit 7497f733d6

View file

@ -26,6 +26,6 @@ cd "${cur}" || { echo "Folder \"${cur}\" doesn't exist, aborting." && exit; }
# init/update the submodule # init/update the submodule
git submodule update --init --recursive git submodule update --init --recursive
# launch dotdrop # launch dotdrop
PYTHONPATH=dotdrop python3 -m dotdrop.dotdrop --cfg="${cfg}" "${args[@]}" PYTHONPATH=dotdrop python -m dotdrop.dotdrop --cfg="${cfg}" "${args[@]}"
# pivot back # pivot back
cd "${opwd}" || { echo "Folder \"${opwd}\" doesn't exist, aborting." && exit; } cd "${opwd}" || { echo "Folder \"${opwd}\" doesn't exist, aborting." && exit; }