You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This file is part of shellfire configure. It is subject to the licence terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/shellfire-dev/configure/master/COPYRIGHT. No part of shellfire configure, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
core_exitError $core_commandLine_exitCode_CONFIG "The configuration setting '$configurationSettingName' can not be empty"
fi
}
configure_validate_Boolean()
{
if core_variable_isInvalidBoolean "$1"; then
core_exitError $core_commandLine_exitCode_CONFIG "The configuration setting '$configurationSettingName' ('$1') is not a valid boolean"
fi
}
configure_validate_ReadableSearchableFolderPath()
{
if ! core_path_isReadableAndSearchableFolderPath "$1"; then
core_exitError $core_commandLine_exitCode_CONFIG "The configuration setting '$configurationSettingName' ('$1') is not a readable, searchable folder path"