From 5bd5ccb477427379228873e930043089004d57d6 Mon Sep 17 00:00:00 2001 From: Idan Cohen Date: Wed, 2 Mar 2022 15:46:43 +0200 Subject: [PATCH] Add support *.tar.gz format --- pip-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pip-install.sh b/pip-install.sh index 0b199fb..490334e 100755 --- a/pip-install.sh +++ b/pip-install.sh @@ -30,7 +30,7 @@ upload_package() { upload_packages() { - local packages=$(ls *.whl) + local packages=$(ls *.whl *.tar.gz) for package in $packages; do upload_package $@ $package done @@ -38,7 +38,7 @@ upload_packages() { remove_all_packages() { - rm *.whl + rm *.whl *.tar.gz }