rizin/configure.hook
2015-04-17 21:56:01 +02:00

10 lines
179 B
Bash
Executable file

#!/bin/sh
case "$1" in
--report|-r|--version|--help)
: # nothing to do here
;;
*)
[ plugins.def.cfg -nt ./plugins.cfg ] && rm -f plugins.cfg
./configure-plugins "$@"
;;
esac