8 lines
174 B
Bash
Executable File
8 lines
174 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if ! command -v entr > /dev/null; then
|
|
echo "entr is not installed, aborting..."
|
|
exit 1
|
|
fi
|
|
|
|
git ls-files | poetry run entr -r grzegorz-webui "$@"
|