From 94505b324cef4b08e10d40e7f29846b96a6a066d Mon Sep 17 00:00:00 2001 From: UserA Date: Tue, 13 Aug 2024 05:49:53 +0300 Subject: [PATCH] Fix run.sh script (misshing shebang) --- run.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 8bc030c..4958222 100755 --- a/run.sh +++ b/run.sh @@ -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