From 3f867b822884f6d30d6f8707f627df3f6c48e16b Mon Sep 17 00:00:00 2001 From: MountyMapleSyrup <159492850+MountyMapleSyrup@users.noreply.github.com> Date: Tue, 2 Apr 2024 15:54:22 -0400 Subject: [PATCH] Update lazylibrarian.sh fix case sensitive directory problem --- ct/lazylibrarian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/lazylibrarian.sh b/ct/lazylibrarian.sh index e171f4e1..e57887bd 100644 --- a/ct/lazylibrarian.sh +++ b/ct/lazylibrarian.sh @@ -55,7 +55,7 @@ function default_settings() { function update_script() { header_info -if [[ ! -d /opt/lazylibrarian/ ]]; then msg_error "No ${APP} Installation Found!"; exit; fi +if [[ ! -d /opt/LazyLibrarian/ ]]; then msg_error "No ${APP} Installation Found!"; exit; fi msg_info "Updating $APP LXC" git -C /opt/LazyLibrarian pull origin master &>/dev/null msg_ok "Updated $APP LXC"