From 080a49ce29d857d63a4024943515a524b95aaba3 Mon Sep 17 00:00:00 2001 From: Yudintsev Lonedone Vladislav Date: Mon, 22 Nov 2021 16:52:08 +0300 Subject: [PATCH] Remove package descriptor prefix to fix dependency installation --- ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci.py b/ci.py index 13afd12..6a4e18a 100644 --- a/ci.py +++ b/ci.py @@ -312,7 +312,7 @@ def application_code_changed(): # ------- def fetch_dependencies(): print(f"🧲\t{COL_YEL}Fetching{COL_END} dependencies...") - descriptor = copy2(CURRENT_PACKAGES_DESCRIPTOR_PATH, f"{WORKING_DIR}/current-{DESCRIPTORS[LANGUAGE]}") + descriptor = copy2(CURRENT_PACKAGES_DESCRIPTOR_PATH, f"{WORKING_DIR}/{DESCRIPTORS[LANGUAGE]}") descriptor = os.path.basename(descriptor) if LANGUAGE == "python": pip(descriptor)