Skip to content

Commit af116bf

Browse files
authored
Update checkAllsky.sh: Prepend ALLSKY_
1 parent ec7d2af commit af116bf

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

scripts/checkAllsky.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
ME="$( basename "${BASH_ARGV0}" )"
1414

1515
#shellcheck disable=SC1091 source-path=.
16-
source "${ALLSKY_HOME}/variables.sh" || exit "${EXIT_ERROR_STOP}"
16+
source "${ALLSKY_HOME}/variables.sh" || exit "${ALLSKY_EXIT_ERROR_STOP}"
1717
#shellcheck source-path=scripts
18-
source "${ALLSKY_SCRIPTS}/functions.sh" || exit "${EXIT_ERROR_STOP}"
18+
source "${ALLSKY_SCRIPTS}/functions.sh" || exit "${ALLSKY_EXIT_ERROR_STOP}"
1919
#shellcheck source-path=scripts
20-
source "${ALLSKY_SCRIPTS}/installUpgradeFunctions.sh" || exit "${EXIT_ERROR_STOP}"
20+
source "${ALLSKY_SCRIPTS}/installUpgradeFunctions.sh" || exit "${ALLSKY_EXIT_ERROR_STOP}"
2121
#shellcheck source-path=scripts
22-
source "${ALLSKY_SCRIPTS}/checkFunctions.sh" || exit "${EXIT_ERROR_STOP}"
22+
source "${ALLSKY_SCRIPTS}/checkFunctions.sh" || exit "${ALLSKY_EXIT_ERROR_STOP}"
2323

2424
usage_and_exit()
2525
{
@@ -873,7 +873,7 @@ else
873873
fi
874874
if [[ ${NUM_ERRORS} -gt 0 ]]; then
875875
echo -ne "${wERROR}Errors: ${NUM_ERRORS}${wNC}${wBR}"
876-
RET="${EXIT_ERROR_STOP}"
876+
RET="${ALLSKY_EXIT_ERROR_STOP}"
877877
fi
878878
fi
879879

0 commit comments

Comments
 (0)