feat(rules): add error handling standards to command paths

This commit is contained in:
Nicola Zangrandi 2025-02-21 08:50:22 +01:00
parent bceb45ad8c
commit 4837b26e58
Signed by: wasp
GPG key ID: 43C1470D890F23ED

View file

@ -26,6 +26,19 @@ When writing scripts that use external commands:
- Consider environment-specific paths
- Use $HOME instead of ~ for home directory paths
4. Error Handling:
- Always use `set -euo pipefail`
- Wrap critical commands in error handlers:
```bash
COMMAND || {
echo "Command failed!"
exit 1
}
```
- Add descriptive echo statements before and after important commands
- Use meaningful exit codes
- Ensure proper cleanup on error
4. Example pattern:
```bash
# Find executable
@ -58,9 +71,15 @@ examples:
$GO_CMD build
- input: |
# Bad: Using tilde expansion
~/.bun/bin/bun install
# Bad: No error handling
go build -o app
output: |
# Good: With error handling
echo "Building application..."
go build -o app || {
echo "Build failed!"
exit 1
}
# Good: Use $HOME
if command -v bun >/dev/null 2>&1; then
BUN_CMD="bun"