mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-03-23 21:24:11 -05: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
|