diff options
author | NIIBE Yutaka <[email protected]> | 2022-11-22 06:19:47 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2022-11-25 12:59:19 +0000 |
commit | ddfc90e5242ec751bf5275c6acbe12dc51d64b6d (patch) | |
tree | 4d45543b17362fce708091366cbb5808b5a0e770 | |
parent | tests:gpgscm:w32: Fix for GetTempPath. (diff) | |
download | gnupg-ddfc90e5242ec751bf5275c6acbe12dc51d64b6d.tar.gz gnupg-ddfc90e5242ec751bf5275c6acbe12dc51d64b6d.zip |
tests:w32: Fix for non-dot file name for Windows.
* tests/migrations/from-classic.scm (assert-migrated): Handle the case
on Windows.
--
Signed-off-by: NIIBE Yutaka <[email protected]>
-rwxr-xr-x | tests/migrations/from-classic.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migrations/from-classic.scm b/tests/migrations/from-classic.scm index b473d702a..2033a4a77 100755 --- a/tests/migrations/from-classic.scm +++ b/tests/migrations/from-classic.scm @@ -26,7 +26,7 @@ (call-check `(,@GPG --list-secret-keys))) (define (assert-migrated) - (unless (file-exists? ".gpg-v21-migrated") + (unless (or (file-exists? ".gpg-v21-migrated") (file-exists? "gpg-v21-migrated")) (error "Not migrated")) (for-each |