From ea68213ac7a42f627915039cb6c7d5f191463f56 Mon Sep 17 00:00:00 2001 From: Matthew Carbone Date: Tue, 5 Nov 2024 13:59:03 -0500 Subject: [PATCH] Have scripts use python instead of python3 --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index f4515bb0..0bfe3fca 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -11,7 +11,7 @@ install() { echo "installing $TARGET" - python3 -c "import toml; c = toml.load('pyproject.toml'); print('\n'.join(c$TARGET))" | + python -c "import toml; c = toml.load('pyproject.toml'); print('\n'.join(c$TARGET))" | pip install -r /dev/stdin }