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
fix(scripts): resolve shellcheck SC2129 warnings in detect-stack-changes.sh
Group multiple echo statements with single redirect to improve efficiency
and satisfy shellcheck SC2129 style warnings.
Changed:
- Multiple `echo >> file` → `{ echo; echo; } >> file`
- Applies to both first deployment and normal output sections
- More efficient I/O with single file open
Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
0 commit comments