From 697ed25f02b87585c152e3eb41a5a3d1a2b766e1 Mon Sep 17 00:00:00 2001 From: Massimiliano Adamo <maxadamo@gmail.com> Date: Sun, 28 Aug 2022 22:02:23 +0200 Subject: [PATCH] fix pip creation --- create-packages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-packages.sh b/create-packages.sh index 1aff4fb..930c97c 100755 --- a/create-packages.sh +++ b/create-packages.sh @@ -103,7 +103,7 @@ if [[ -n $PIP ]]; then PIP_NAME="wile_coyote-${VERSION}-py3-none-any.whl" python3 setup.py bdist_wheel if [[ $? -eq 0 ]]; then - mv dist/$PIP_NAME packages/pip/ + mv dist/$PIP_NAME packages/whl/ echo -e "\nthe package was created and stored as ./packages/whl/${PIP_NAME}" else echo -e "\nthere was an error creating the package" -- GitLab