From 26b233449099ae8b0ed1079a8bc01b01dc774ea6 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 27 Dec 2021 12:19:23 -0500 Subject: [PATCH] [U] Update deploy script --- deploy.ps1 | 2 ++ deploy.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/deploy.ps1 b/deploy.ps1 index 38bfb8d..6d2545c 100644 --- a/deploy.ps1 +++ b/deploy.ps1 @@ -3,6 +3,8 @@ $ErrorActionPreference = "Stop" $VERSION = $(python -c 'import hypy_utils; print(hypy_utils.__version__)') Write-Output "$VERSION" +Remove-Item dist/* + # Build python setup.py sdist bdist_wheel diff --git a/deploy.sh b/deploy.sh index 001a3ac..041381b 100644 --- a/deploy.sh +++ b/deploy.sh @@ -5,6 +5,8 @@ set -e VERSION=$(python3 -c 'import hypy_utils; print(hypy_utils.__version__)') echo "$VERSION" +rm dist/* + # Build python3 setup.py sdist bdist_wheel