From 7497f733d658d13f64e010f5a5ec1409fcc5e7d9 Mon Sep 17 00:00:00 2001 From: shokinn Date: Tue, 12 Mar 2024 19:42:22 +0100 Subject: [PATCH] use python as interpreter --- dotdrop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop.sh b/dotdrop.sh index 19bc6e5..e87ce30 100755 --- a/dotdrop.sh +++ b/dotdrop.sh @@ -26,6 +26,6 @@ cd "${cur}" || { echo "Folder \"${cur}\" doesn't exist, aborting." && exit; } # init/update the submodule git submodule update --init --recursive # launch dotdrop -PYTHONPATH=dotdrop python3 -m dotdrop.dotdrop --cfg="${cfg}" "${args[@]}" +PYTHONPATH=dotdrop python -m dotdrop.dotdrop --cfg="${cfg}" "${args[@]}" # pivot back cd "${opwd}" || { echo "Folder \"${opwd}\" doesn't exist, aborting." && exit; }