You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
But a more robust solution that handles more options would be far better.
The text was updated successfully, but these errors were encountered: