We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5b9f5f commit 2503fbcCopy full SHA for 2503fbc
bin/check-release-environment
@@ -6,9 +6,9 @@ if [ -z "${PYPI_TOKEN}" ]; then
6
errors+=("The ORB_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.")
7
fi
8
9
-len=${#errors[@]}
+lenErrors=${#errors[@]}
10
11
-if [[ len -gt 0 ]]; then
+if [[ lenErrors -gt 0 ]]; then
12
echo -e "Found the following errors in the release environment:\n"
13
14
for error in "${errors[@]}"; do
0 commit comments