From 7c53509b55f74d2db1cae4b97454e9b20f0e58cb Mon Sep 17 00:00:00 2001
From: mush42 <musharraf.omer@gmail.com>
Date: Tue, 2 Feb 2021 21:45:48 +0200
Subject: [PATCH] Fixed the twine command.

---
 tasks.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tasks.py b/tasks.py
index 5c28f97..f8e0e57 100644
--- a/tasks.py
+++ b/tasks.py
@@ -36,4 +36,4 @@ def upload_wheels(c):
     if not tag_triggered:
         return print("Not a release build.\nSkipping PyPI upload process.")
     with c.cd(REPO_HOME):
-        c.run('twine upload  ".\target\wheels\*" --non-interactive --skip-existing')
+        c.run(r'twine upload  "./target/wheels/*" --non-interactive --skip-existing')