2019-05-23 21:13:50 +02:00
|
|
|
#!/usr/bin/env bash
|
2015-05-22 18:50:24 +00:00
|
|
|
|
2015-10-28 21:28:21 +00:00
|
|
|
basedir="${0%/*}/.."
|
2015-05-22 18:50:24 +00:00
|
|
|
[ -z "$inc_processor" ] && . "$basedir/build/processor.sh"
|
|
|
|
|
2015-05-31 21:09:48 +00:00
|
|
|
. "$basedir/build/arguments.sh"
|
2015-05-22 18:50:24 +00:00
|
|
|
|
2019-02-16 11:17:58 +01:00
|
|
|
case "$command" in
|
2024-10-29 14:56:41 +00:00
|
|
|
process_file) process_file "$workfile" "$processor" ;;
|
|
|
|
*) die "Unrecognised command or no command given" ;;
|
2019-02-16 11:17:58 +01:00
|
|
|
esac
|