From 0badc59665be328fbd370bbd9e2d1cf073da9d68 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Mon, 24 Nov 2025 17:53:52 +0000 Subject: e2e-tests: Pass --no-same-owner flag to tar. This is required to run tar successfully within the CI end-to-end tests container. --- e2e-tests/tools/capture-output-file-with-parameter-reference.scm | 2 +- e2e-tests/tools/capture-output-file.scm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'e2e-tests') diff --git a/e2e-tests/tools/capture-output-file-with-parameter-reference.scm b/e2e-tests/tools/capture-output-file-with-parameter-reference.scm index 6bc4b7d..1f0d619 100644 --- a/e2e-tests/tools/capture-output-file-with-parameter-reference.scm +++ b/e2e-tests/tools/capture-output-file-with-parameter-reference.scm @@ -1,6 +1,6 @@ (define extract-specific-file (command #:inputs (archive #:type File) (extractfile #:type string) - #:run "tar" "--extract" "--file" archive extractfile + #:run "tar" "--no-same-owner" "--extract" "--file" archive extractfile #:outputs (extracted_file #:type File #:binding ((glob . "$(inputs.extractfile)"))))) diff --git a/e2e-tests/tools/capture-output-file.scm b/e2e-tests/tools/capture-output-file.scm index 80b4654..aa1dca0 100644 --- a/e2e-tests/tools/capture-output-file.scm +++ b/e2e-tests/tools/capture-output-file.scm @@ -1,6 +1,6 @@ (define extract (command #:inputs (archive #:type File) - #:run "tar" "--extract" "--file" archive + #:run "tar" "--no-same-owner" "--extract" "--file" archive #:outputs (extracted_file #:type File #:binding ((glob . "hello.txt"))))) -- cgit 1.4.1