From 07fdaa3dcd5448438baec00aa1e37486099474a3 Mon Sep 17 00:00:00 2001 From: Ahmed Bilal Khalid Date: Sat, 14 Sep 2019 00:37:56 +0500 Subject: [PATCH] a --- app/helper.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/helper.py b/app/helper.py index 75f6ab8..30da939 100644 --- a/app/helper.py +++ b/app/helper.py @@ -3,6 +3,11 @@ import json import os def install_available(project_path): + try: + os.remove(os.path.join(project_path, "Pipfile.lock")) + except Exception: + pass + if get_distro_name() == "alpine": sp.check_output(['pipenv', 'lock'])