diff options
| author | Arun Isaac | 2025-11-24 17:53:52 +0000 |
|---|---|---|
| committer | Arun Isaac | 2025-11-24 17:53:52 +0000 |
| commit | 0badc59665be328fbd370bbd9e2d1cf073da9d68 (patch) | |
| tree | d26268da862692d79b24f8f0fd92f33aaf89f93c /e2e-tests | |
| parent | ce71920763e09a8078cb70c54365b8add37882ad (diff) | |
| download | ravanan-0badc59665be328fbd370bbd9e2d1cf073da9d68.tar.gz ravanan-0badc59665be328fbd370bbd9e2d1cf073da9d68.tar.lz ravanan-0badc59665be328fbd370bbd9e2d1cf073da9d68.zip | |
e2e-tests: Pass --no-same-owner flag to tar.
This is required to run tar successfully within the CI end-to-end tests container.
Diffstat (limited to 'e2e-tests')
| -rw-r--r-- | e2e-tests/tools/capture-output-file-with-parameter-reference.scm | 2 | ||||
| -rw-r--r-- | e2e-tests/tools/capture-output-file.scm | 2 |
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"))))) |
