From 098add3bb704107aa76ccecba38ce823a94ddca0 Mon Sep 17 00:00:00 2001 From: Luis Finke Date: Sat, 31 Dec 2022 14:03:11 -0500 Subject: [PATCH] use pip3 instead of pip --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2f989c3..d9d306b 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.0.1", "description": "A template to quickly create decky plugins from scratch, based on TypeScript and webpack", "scripts": { - "prepare": "if [ -f requirements.txt ]; then\n\tpip install -U -r requirements.txt -t py_modules\nfi", + "prepare": "if [ -f requirements.txt ]; then\n\tpip3 install -U -r requirements.txt -t py_modules\nfi", "build": "shx rm -rf dist && rollup -c", "watch": "rollup -c -w", "test": "echo \"Error: no test specified\" && exit 1"