We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67cfac2 commit 7fe8ec3Copy full SHA for 7fe8ec3
bin/check-release-environment
@@ -6,9 +6,9 @@ if [ -z "${PYPI_TOKEN}" ]; then
6
errors+=("The OPENAI_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