diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-08-11 13:07:55 -0400 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-08-11 13:07:55 -0400 |
commit | fb47b226d0fc3a253f538557a865bae726a8c42a (patch) | |
tree | 3b03938868e01ab56ff0828fdd8a76e140ef9f03 /localgpgexpandkeyring | |
parent | 2d9152297ff0d2f993d6a668ea075a0d93be5871 (diff) |
Fix integer comparison test.
Diffstat (limited to 'localgpgexpandkeyring')
-rwxr-xr-x | localgpgexpandkeyring | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/localgpgexpandkeyring b/localgpgexpandkeyring index 6df0b0c..6a825ff 100755 --- a/localgpgexpandkeyring +++ b/localgpgexpandkeyring @@ -3,7 +3,7 @@ set -e -if [ $# > 0 ]; then +if [ $# -gt 0 ]; then mykeys="$1" shift fi |