Skip to content

Commit

Permalink
[ci] Fix untar dir in replication log.
Browse files Browse the repository at this point in the history
  • Loading branch information
Axel-Naumann committed Aug 21, 2023
1 parent 4e8c577 commit 4e03140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/root-ci-config/build_root.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def download_artifacts(obj_prefix: str):
with tarfile.open(tar_path) as tar:
tar.extractall(WORKDIR)

build_utils.log.add(f'\ntar -xf {tar_path}\n')
build_utils.log.add(f'\ncd {WORKDIR} && tar -xf {tar_path}\n')

except Exception as err:
build_utils.print_warning("failed to download/extract:", err)
Expand Down

0 comments on commit 4e03140

Please sign in to comment.