You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gw: fix shellcheck warnings in e2e test.sh (prek CI)
prek's shellcheck-py started scanning e2e/test.sh once the previous
commit modified it, and surfaced two pre-existing classes of warnings:
- SC3043: `local` is undefined in POSIX sh. The script uses bash-only
`local` throughout, so the `#!/bin/sh` shebang was already wrong.
Switch to `#!/bin/bash`.
- SC2155: `local foo=$(cmd)` masks the inner command's exit status.
Split into `local foo; foo=$(cmd)` at every site (one inside
`test_certificate_from_pebble`, the rest inside `main`).
Remaining shellcheck findings are info-level only (SC2086, SC2317);
the prek CI run only failed on warning-level findings.
0 commit comments