fix: use conventions

This commit is contained in:
Strix 2024-06-06 02:10:33 +02:00
parent 243e102b10
commit 65d49fff14
3 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@
if ! [ $A3_INCLUDE ]; then
A3_INCLUDE=1
A3_INCLUDED=""
A3_LIB_PATH=${A3_LIB_PATH:-/usr/lib/a3}
A3_LIB=${A3_LIB:-/usr/lib/a3}
is_included() {
echo "$A3_INCLUDED" | grep -q "$1"
}
@ -16,6 +16,6 @@ if ! [ $A3_INCLUDE ]; then
}
a3include_lib() {
include $A3_LIB_PATH/$1.sh
include $A3_LIB/$1.sh
}
fi