Skip to content

Commit

Permalink
fix bash variable ref
Browse files Browse the repository at this point in the history
  • Loading branch information
gspetro-NOAA committed Nov 4, 2024
1 parent cb19a8e commit 97a09fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/check_tech_doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sphinx-apidoc -fM -o ./tests/WE2E ../../tests/WE2E
# Check for mismatch between what comes out of this action and what is in the PR.
status=`git status -s`

if [ status ]; then
if [ -n ${status} ]; then
echo "${status}"
echo ""
echo "Please update your Technical Documentation RST files."
Expand Down

0 comments on commit 97a09fb

Please sign in to comment.