Skip to content

Commit

Permalink
Minor output improvement
Browse files Browse the repository at this point in the history
Signed-off-by: Richard T Bonhomme <[email protected]>
  • Loading branch information
TinCanTech committed Aug 11, 2021
1 parent eb9eee5 commit 0e9685e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions easytls-shellcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ shellcheck_bin='shellcheck'
"${shellcheck_bin}" --version
export SHELLCHECK_OPTS="-S warning -e 1090"

printf '\n\n%s\n' '*** shellcheck easytls'
foo='========================='
printf '\n\n%s\n%s\n' "$foo" '*** shellcheck easytls'
"${shellcheck_bin}" easytls && sc_easytls=$?
printf '\n\n%s\n' '*** shellcheck easytls-cryptv2-verify.sh'
printf '\n\n%s\n%s\n' "$foo" '*** shellcheck easytls-cryptv2-verify.sh'
"${shellcheck_bin}" easytls-cryptv2-verify.sh && sc_easytls_cryptv2_verify=$?
printf '\n\n%s\n' '*** shellcheck easytls-verify.sh'
printf '\n\n%s\n%s\n' "$foo" '*** shellcheck easytls-verify.sh'
"${shellcheck_bin}" easytls-verify.sh && sc_easytls_verify=$?
printf '\n\n%s\n' '*** shellcheck easytls-client-connect.sh'
printf '\n\n%s\n%s\n' "$foo" '*** shellcheck easytls-client-connect.sh'
"${shellcheck_bin}" easytls-client-connect.sh && sc_easytls_client_connect=$?

exit_status=$(( \
Expand Down

0 comments on commit 0e9685e

Please sign in to comment.