You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-editors/atom/files/apm-python.patch

17 lines
388 B

diff --git a/apm/bin/python-interceptor.sh b/apm/bin/python-interceptor.sh
index 7ce1965..12cc72f 100755
--- a/apm/bin/python-interceptor.sh
+++ b/apm/bin/python-interceptor.sh
@@ -34,9 +34,9 @@ case $1 in
ARGS+=("--format=safemake.py")
fi
- exec python "${ARGS[@]}"
+ exec python2 "${ARGS[@]}"
;;
*)
- exec python "$@"
+ exec python2 "$@"
;;
esac