From 62bf8e100841e85138d4bfb9df942606b64a6385 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Thu, 17 Dec 2020 23:05:46 +0200
Subject: [PATCH] Pipenv scripts.

Don't have multiple actions in the same script.
---
 Pipfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Pipfile b/Pipfile
index d9f28ee..04cc131 100644
--- a/Pipfile
+++ b/Pipfile
@@ -18,9 +18,9 @@ python_version = "3.7"
 
 [scripts]
 lint = "pre-commit run --all-files"
-build = "sh -c 'git clean -fdX && python setup.py bdist_wheel'"
+build = "python setup.py bdist_wheel"
 clean = "git clean -fdX"
-upload = "sh -c 'git clean -fdX && python setup.py bdist_wheel && twine upload -s dist/*'"
+upload = "sh -c 'twine upload -s dist/*'"
 bats = "bats -t tests/"
 check = "sh -c 'rm -rf dist/ && python setup.py bdist_wheel && twine check dist/*'"
 doctest = "sh -c 'python -m doctest template/*.py'"
-- 
GitLab