From af619936e6f46ca30c652e2eebf9ada0f3b64ea9 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Sun, 6 Oct 2024 09:19:15 +0200 Subject: Fix incorrect base load --- load.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/load.sh b/load.sh index 3deaab6..47ab31a 100644 --- a/load.sh +++ b/load.sh @@ -3,7 +3,7 @@ if [ "$(basename -- "$_atrocity_init_file")" != "load.sh" ] || [ "${#BASH_SOURCE echo "ERROR: Atrocity must be sourced. If you have atrocity in a sub module, use \`source \"\$(dirname -- \"\$0\")\"/atrocity/load.sh\`" exit 1 fi -_atrocity_base="$(dirname -- "$(readlink -f -- _atrocity_init_file)")" +_atrocity_base="$(dirname -- "$(readlink -f -- "$_atrocity_init_file")")" source "$_atrocity_base"/logger.sh source "$_atrocity_base"/events.sh -- cgit