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