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'])