fixed bug

This commit is contained in:
Lucas Gravley 2020-07-22 11:59:46 -05:00
parent 1c1784a819
commit 183a8f0ea3
2 changed files with 1 additions and 1 deletions

View file

@ -755,7 +755,7 @@ GetGitHubVars() {
############################
# Validate we have a value #
############################
if [ -z "${GITHUB_TOKEN}" ]; then
if [ -z "${GITHUB_TOKEN}" ] && [[ ${RUN_LOCAL} == "false" ]]; then
echo -e "${NC}${B[R]}${F[W]}ERROR!${NC} Failed to get [GITHUB_TOKEN]!${NC}"
echo -e "${NC}${B[R]}${F[W]}ERROR:${NC}[${GITHUB_TOKEN}]${NC}"
echo -e "${NC}${B[R]}${F[W]}ERROR!${NC} Please set a [GITHUB_TOKEN] from the main workflow environment to take advantage of multiple status reports!${NC}"