From c7c4348ac6e7343feb24ddf938cf388ae5d3531f Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 31 Jul 2022 01:03:49 -0500 Subject: [PATCH] fix: use python3 for autojump --- install.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.bash b/install.bash index 631ae75..5c1012f 100644 --- a/install.bash +++ b/install.bash @@ -136,6 +136,8 @@ install-autojump() { ( cd "autojump" python3 "install.py" -d "${install_path}" + sed -i "s/\#\!\/usr\/bin\/env\ python/\#\!\/usr\/bin\/env\ python3/" \ + "${install_path}/bin/autojump" ) || return 1 }