From 18ec22bffea77158777c3a3225e632e25eb33138 Mon Sep 17 00:00:00 2001 From: RedDeltas <160131179+RedDeltas@users.noreply.github.com> Date: Thu, 15 Feb 2024 12:26:14 +0000 Subject: Added core.filemode=false so doesn't track changes in file permissions in more restrictive environments --- modules/launch_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/launch_utils.py b/modules/launch_utils.py index 107c72b0..ad04eb36 100644 --- a/modules/launch_utils.py +++ b/modules/launch_utils.py @@ -188,7 +188,7 @@ def git_clone(url, dir, name, commithash=None): return try: - run(f'"{git}" clone "{url}" "{dir}"', f"Cloning {name} into {dir}...", f"Couldn't clone {name}", live=True) + run(f'"{git}" clone --config core.filemode=false "{url}" "{dir}"', f"Cloning {name} into {dir}...", f"Couldn't clone {name}", live=True) except RuntimeError: shutil.rmtree(dir, ignore_errors=True) raise -- cgit v1.2.1