about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--e2e-tests/tools/capture-output-file-with-parameter-reference.scm2
-rw-r--r--e2e-tests/tools/capture-output-file.scm2
2 files changed, 2 insertions, 2 deletions
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")))))