From b6db57ef3729e1184808d64b35e8b932b69c2b9c Mon Sep 17 00:00:00 2001 From: Blake Williams Date: Thu, 28 Dec 2023 13:13:34 +1100 Subject: [PATCH] Fix deploy script --- tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools.sh b/tools.sh index 5b3bf15..b28102f 100755 --- a/tools.sh +++ b/tools.sh @@ -6,7 +6,7 @@ script_abspath="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # push tags. cmd-deploy() { # Clean out dist to avoid "file already exists" errors: - rm ./dist/* + rm -f ./dist/* source venv/bin/activate python3 setup.py sdist bdist_wheel python3 -m twine upload dist/*