Skip to content

Commit d0edb3d

Browse files
committed
scripts/aria-cmake-build-test.sh: fix masked exit value.
1 parent 855175d commit d0edb3d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

scripts/aria-cmake-build-test.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,7 @@ build_aria_test() {
115115

116116
# View the available ciphers with:
117117
echo "checking wolfsl client ssl version numbers SSLv3(0) - TLS1.3(4):"
118-
./examples/client/client -V
119-
if [ $? -eq 0 ]; then
118+
if ./examples/client/client -V; then
120119
echo "Confirmed ./examples/client/client operational."
121120
else
122121
echo "ERROR ./examples/client/client error = $?"

0 commit comments

Comments
 (0)