mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-06 08:49:53 -06:00
10 lines
148 B
Bash
Executable File
10 lines
148 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$1" ]; then
|
|
script="simple"
|
|
else
|
|
script="$1"
|
|
fi
|
|
|
|
watchmedo auto-restart --recursive --patterns="*.py" -- poetry run $script
|