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
|
- Consider environment-specific paths
|
||||||
- Use $HOME instead of ~ for home directory 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:
|
4. Example pattern:
|
||||||
```bash
|
```bash
|
||||||
# Find executable
|
# Find executable
|
||||||
|
@ -58,9 +71,15 @@ examples:
|
||||||
$GO_CMD build
|
$GO_CMD build
|
||||||
|
|
||||||
- input: |
|
- input: |
|
||||||
# Bad: Using tilde expansion
|
# Bad: No error handling
|
||||||
~/.bun/bin/bun install
|
go build -o app
|
||||||
output: |
|
output: |
|
||||||
|
# Good: With error handling
|
||||||
|
echo "Building application..."
|
||||||
|
go build -o app || {
|
||||||
|
echo "Build failed!"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
# Good: Use $HOME
|
# Good: Use $HOME
|
||||||
if command -v bun >/dev/null 2>&1; then
|
if command -v bun >/dev/null 2>&1; then
|
||||||
BUN_CMD="bun"
|
BUN_CMD="bun"
|
||||||
|
|
Loading…
Add table
Reference in a new issue