This commit is contained in:
ahmadbilalkhalid 2019-09-14 00:37:56 +05:00
parent e3f6767910
commit 07fdaa3dcd
1 changed files with 5 additions and 0 deletions

View File

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