diff options
author | Justus Winter <[email protected]> | 2016-01-22 11:06:06 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-02-23 10:58:52 +0000 |
commit | 629284120ff359b98a178b6cddf0e005e5f4db1a (patch) | |
tree | de8e2c57c6565896aea4b3072bf7731d770bdda8 | |
parent | common/exechelp: Provide a way to wait for multiple processes. (diff) | |
download | gnupg-629284120ff359b98a178b6cddf0e005e5f4db1a.tar.gz gnupg-629284120ff359b98a178b6cddf0e005e5f4db1a.zip |
tests/openpgp: Fix file removal.
* tests/openpgp/version.test: Fix file removal.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-rwxr-xr-x | tests/openpgp/version.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/openpgp/version.test b/tests/openpgp/version.test index cb3ffa87f..7b9fa4b0b 100755 --- a/tests/openpgp/version.test +++ b/tests/openpgp/version.test @@ -31,7 +31,7 @@ if [ -d private-keys-v1.d ]; then rmdir private-keys-v1.d fi for i in pubring.gpg pubring.gpg~ trustdb.gpg trustdb.gpg~ ; do - [ -d "$i" ] && rm "$i" + [ -f "$i" ] && rm "$i" done # Now start the agent right away, so that there is only one place |