Fix run.sh script (misshing shebang)

This commit is contained in:
UserA 2024-08-13 05:49:53 +03:00
parent f14c8344fb
commit 94505b324c

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