feat(rules): add error handling standards to command paths
This commit is contained in:
parent
bceb45ad8c
commit
4837b26e58
1 changed files with 21 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue