mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 16:04:05 +00:00
9 lines
140 B
Bash
9 lines
140 B
Bash
if [[ $# -eq 0 ]]; then
|
|
git add .
|
|
else
|
|
git add "$@"
|
|
fi
|
|
|
|
if command -v critic >/dev/null 2>&1; then
|
|
( critic review 2>/dev/null & )
|
|
fi
|