fsfe-website/build/process_file.sh
Ulf Jasper d88d8b3388
All checks were successful
the build was successful
Replace /bin/bash with /usr/bin/env bash
2019-05-23 21:16:20 +02:00

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