Skip to content

Commit

Permalink
ignore systemdir check if running github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Oct 27, 2023
1 parent 310e0b7 commit 2667c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lgsm/modules/check_system_dir.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [ ! -d "${serverfiles}" ]; then
core_exit.sh
fi

if [ ! -d "${systemdir}" ]; then
if [ ! -d "${systemdir}" ] && [ -z "${CI}" ]; then
fn_print_fail_nl "Cannot access ${systemdir}: No such directory"
if [ -d "${lgsmlogdir}" ]; then
fn_script_log_fail "Cannot access ${systemdir}: No such directory."
Expand Down

0 comments on commit 2667c3b

Please sign in to comment.