Skip to content

Commit

Permalink
fix use of wrong argument in test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
z4yx committed Jul 7, 2024
1 parent d8ac252 commit 94f3e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-real/test-piv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ PIVSignDec() {
op=$3
algoArgs=
inp_file=$TEST_TMP_DIR/cert-$key.pem
if [[ $algo == X25519 ]]; then inp_file=$TEST_TMP_DIR/pubkey-$key.pem; fi
if [[ "$4" == X25519 ]]; then inp_file=$TEST_TMP_DIR/pubkey-$key.pem; fi
if [[ -n "$2" ]]; then pinArgs="-P 654321 -a verify-pin"; fi
if [[ -n "$4" ]]; then algoArgs="-A $4"; fi
if [[ -z "$op" || s = "$op" ]]; then
Expand Down

0 comments on commit 94f3e83

Please sign in to comment.