Files
fsfe-website/build/process_file.sh
T

12 lines
267 B
Bash
Raw Normal View History

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