From 5c5faaf3edf7ddbb6efaa5b0f96d403838708e95 Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Sat, 23 Jul 2022 18:50:45 +0300 Subject: [PATCH] Fix publish script Signed-off-by: Ari Archer --- scripts/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish.sh b/scripts/publish.sh index 864bf2a..ec8bb8d 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -3,7 +3,7 @@ set -xe main() { - python3 pip install setuptools wheel twine + python3 -m pip install setuptools wheel twine python3 setup.py sdist bdist_wheel python3 -m twine upload dist/* }