summaryrefslogtreecommitdiff
path: root/build_upload.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build_upload.sh')
-rwxr-xr-xbuild_upload.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_upload.sh b/build_upload.sh
index c195b5f..7ddd573 100755
--- a/build_upload.sh
+++ b/build_upload.sh
@@ -4,11 +4,11 @@
# too lazy to make it more general
echo "building package"
-/bin/python -m build
+python -m build
echo "uploading to pypi"
# alternatively, use /bin/python -m twine, i use twine in arch
-/bin/twine upload dist/*
+twine upload dist/*
echo "removing dist/*"
rm -r dist \ No newline at end of file