1
0

fix shellcheck include

This commit is contained in:
GenZmeY 2022-01-15 02:59:00 +03:00
parent bbf4a8a4cb
commit 55a5bf5e09

View File

@ -127,7 +127,7 @@ function read_build_settings ()
if ! [[ -f "$MutBuildConfig" ]]; then init_build; fi if ! [[ -f "$MutBuildConfig" ]]; then init_build; fi
if bash -n "$MutBuildConfig"; then if bash -n "$MutBuildConfig"; then
# shellcheck source=./.shellcheck/build.ini # shellcheck source=./.shellcheck/build.cfg
source "$MutBuildConfig" source "$MutBuildConfig"
else else
echo "$MutBuildConfig broken! Check this file before continue or create new one using $0 --init-build" 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 ! [[ -f "$MutTestConfig" ]]; then init_test; fi
if bash -n "$MutTestConfig"; then if bash -n "$MutTestConfig"; then
# shellcheck source=./.shellcheck/test.ini # shellcheck source=./.shellcheck/test.cfg
source "$MutTestConfig" source "$MutTestConfig"
else else
echo "$MutTestConfig broken! Check this file before continue or create new one using $0 --init-test" echo "$MutTestConfig broken! Check this file before continue or create new one using $0 --init-test"