PortValhalla/scripts/Common/Scripts/hooks.sh

15 lines
183 B
Bash
Raw Normal View History

2024-03-23 16:23:45 +00:00
#!/bin/bash
function runHook() {
function fallback() {
${@:2};
}
if command -v $1 > /dev/null
then
$1 fallback;
else
fallback;
fi;
}