diff options
author | Justus Winter <[email protected]> | 2016-10-04 10:46:00 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-10-04 11:23:17 +0000 |
commit | 949e70115eb2c04bd09da6477f6c433e6fd9a366 (patch) | |
tree | 3e9a3c4d798893676e3455f4041ea3c56ad9823b | |
parent | tools: Ignore existing directories in gpgtar. (diff) | |
download | gnupg-949e70115eb2c04bd09da6477f6c433e6fd9a366.tar.gz gnupg-949e70115eb2c04bd09da6477f6c433e6fd9a366.zip |
tests,w32: Avoid using 'glob'.
* tests/openpgp/setup.scm: Avoid 'glob' which is not available on
mingw.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-rwxr-xr-x | tests/openpgp/setup.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/openpgp/setup.scm b/tests/openpgp/setup.scm index d4a3e3701..0a9a153f3 100755 --- a/tests/openpgp/setup.scm +++ b/tests/openpgp/setup.scm @@ -127,8 +127,7 @@ (setenv "GNUPGHOME" (getcwd) #t) (create-gpghome) (kill-agent) - (call-check `(,(tool 'gpgtar) --create --output ,(cadr *args*) - ,@(glob "*"))))) + (call-check `(,(tool 'gpgtar) --create --output ,(cadr *args*) ".")))) ((member "--unpack-tarball" *args*) (call-check `(,(tool 'gpgtar) --extract --directory=. ,(cadr *args*))) (start-agent)) |