From 58119a3dea18648e06eb1aa03645321297382069 Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Thu, 9 Nov 2023 14:46:31 +0200 Subject: [PATCH] handle-subprojects-cache: Remove old gst-build search path Part-of: --- ci/scripts/handle-subprojects-cache.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/scripts/handle-subprojects-cache.py b/ci/scripts/handle-subprojects-cache.py index be6c83841f..5ad47c89f9 100755 --- a/ci/scripts/handle-subprojects-cache.py +++ b/ci/scripts/handle-subprojects-cache.py @@ -6,7 +6,6 @@ Copies current subproject git repository to create a cache import shutil import os -import sys import argparse import subprocess @@ -44,7 +43,7 @@ def create_cache_in_image(options): def copy_cache(options): - for path in [options.cache_dir, r"C:\gst-build\subprojects"]: + for path in [options.cache_dir]: if not os.path.exists(path): print("%s doesn't exist." % path) continue