File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
python3 setup.py sdist bdist_wheel
44

5-
if "$1" == "test"; then
5+
if [ "$1" == "test" ]; then
66
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
77
fi
88

9-
if "$1" == "deploy"; then
9+
if [ "$1" == "deploy" ]; then
1010
twine upload dist/*
1111
fi

0 commit comments

Comments
 (0)