-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
Description
It would be great to have the OwlProgram functionality wrapped up as a script or executable that you can run from anywhere (Oli's suggestion).
It's easy to put together a simple bash script, e.g.
SRC=$PWD # current working directory
PATCH=$1 # first command line argument to script is the patch name
TARGET=$2 # second argument is target, e.g. run
OWLPROGRAM=/some/where/OwlProgram
cd $OWLPROGRAM && make PATCHSOURCE=$SRC PATCH=$PATCH $TARGET
But a more robust solution that handles more options would be far better.