Skip to content

Commit

Permalink
Update remoteWebsiteInstall.sh: SC2086 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
EricClaeys authored Dec 18, 2024
1 parent 91e6129 commit bbc5b88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions remoteWebsiteInstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function enter_yes_no()
fi
done

return ${RESULT}
return "${RESULT}"
}

# prompt the user to press any key.
Expand Down Expand Up @@ -163,7 +163,7 @@ function display_box()
else
echo -e "${DIALOG_TEXT}"
fi
return ${RET}
return "${RET}"
fi

# Don't use: it's redundant most of the time --backtitle "${DIALOG_BACK_TITLE}" \
Expand Down Expand Up @@ -593,7 +593,7 @@ function check_if_files_exist()
fi
done

return ${RET_CODE}
return "${RET_CODE}"
}

# Deletes a file from the remote server.
Expand Down

0 comments on commit bbc5b88

Please sign in to comment.