add support for local run tasks
This commit is contained in:
parent
045de1df0b
commit
df4da0997a
2 changed files with 4 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
||||||
*.pyc
|
*.pyc
|
||||||
|
*.local
|
||||||
|
|
|
||||||
3
run
3
run
|
|
@ -11,4 +11,7 @@ shift
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
if [ -f "$RUN_DIR"/scripts/.local/"$task" ]; then
|
||||||
|
exec "$RUN_DIR"/scripts/.local/"$task" "$@"
|
||||||
|
fi
|
||||||
exec "$RUN_DIR"/scripts/"$task" "$@"
|
exec "$RUN_DIR"/scripts/"$task" "$@"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue