handle-subprojects-cache: Remove old gst-build search path

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5543>
This commit is contained in:
Jordan Petridis 2023-11-09 14:46:31 +02:00 committed by GStreamer Marge Bot
parent 9483061e31
commit 58119a3dea

View file

@ -6,7 +6,6 @@ Copies current subproject git repository to create a cache
import shutil import shutil
import os import os
import sys
import argparse import argparse
import subprocess import subprocess
@ -44,7 +43,7 @@ def create_cache_in_image(options):
def copy_cache(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): if not os.path.exists(path):
print("%s doesn't exist." % path) print("%s doesn't exist." % path)
continue continue