Skip to content

Commit 4691ba1

Browse files
committed
Change order of steps
1 parent e0da77f commit 4691ba1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/codechecker_script.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,9 @@ def resolve_symlinks():
293293
files_processed += 1
294294
logging.info("Processed file paths in %d files", files_processed)
295295
def update_file_paths():
296-
""" Fix bazel sandbox paths and resolve symbolic links in generated files to real paths """
297-
fix_bazel_paths()
296+
""" Resolve symlinks from local jobs, then try fixing path from remote executors """
298297
resolve_symlinks()
298+
fix_bazel_paths()
299299

300300

301301
def parse():

0 commit comments

Comments
 (0)