Skip to content

Commit 735307b

Browse files
committed
Fix publish script
1 parent 25f0c61 commit 735307b

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

scripts/publish

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,7 @@ if [ -z "${TEST_PYPI}" ] && [ -z "${CI}" ]; then
5050
fi
5151

5252
if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
53-
for PACKAGE_DIR in "${SUBPACKAGE_DIRS[@]}"
54-
do
55-
rm -rf dist
56-
python setup.py sdist bdist_wheel
57-
twine upload ${TEST_PYPI} dist/*
58-
59-
done
53+
rm -rf dist
54+
python setup.py sdist bdist_wheel
55+
twine upload ${TEST_PYPI} dist/*
6056
fi

0 commit comments

Comments
 (0)