Fix run.sh script (misshing shebang)

This commit is contained in:
akulij 2024-08-13 05:49:53 +03:00
parent 7168a5d760
commit d43961a922

6
run.sh
View File

@ -1 +1,5 @@
./webhook -hooks hooks.json -verbose
#!/bin/bash
echo Start
scriptDir=$(dirname -- "$(readlink -f -- "$BASH_SOURCE")")
$scriptDir/webhook -hooks $scriptDir/hooks.json -verbose
echo End Run.sh