12 lines
271 B
Bash
Executable File
12 lines
271 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
basedir="${0%/*}/.."
|
|
[ -z "$inc_processor" ] && . "$basedir/build/processor.sh"
|
|
|
|
. "$basedir/build/arguments.sh"
|
|
|
|
case "$command" in
|
|
process_file) process_file "$workfile" "$processor" ;;
|
|
*) die "Unrecognised command or no command given" ;;
|
|
esac
|