From 55a5bf5e09368a00318864dbf03879f2196cbab4 Mon Sep 17 00:00:00 2001 From: GenZmeY Date: Sat, 15 Jan 2022 02:59:00 +0300 Subject: [PATCH] fix shellcheck include --- builder | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder b/builder index eb189cc..5b9a38e 100644 --- a/builder +++ b/builder @@ -127,7 +127,7 @@ function read_build_settings () if ! [[ -f "$MutBuildConfig" ]]; then init_build; fi if bash -n "$MutBuildConfig"; then - # shellcheck source=./.shellcheck/build.ini + # shellcheck source=./.shellcheck/build.cfg source "$MutBuildConfig" else echo "$MutBuildConfig broken! Check this file before continue or create new one using $0 --init-build" @@ -140,7 +140,7 @@ function read_test_settings () if ! [[ -f "$MutTestConfig" ]]; then init_test; fi if bash -n "$MutTestConfig"; then - # shellcheck source=./.shellcheck/test.ini + # shellcheck source=./.shellcheck/test.cfg source "$MutTestConfig" else echo "$MutTestConfig broken! Check this file before continue or create new one using $0 --init-test"