Skip to content

Commit

Permalink
fix shell if tests
Browse files Browse the repository at this point in the history
  • Loading branch information
markcmiller86 committed Oct 4, 2024
1 parent 3964b5d commit 580c2e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check_methoddoc_gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
have_func_rst=0
have_methdoc_c=0
for f in ${{ steps.changed-files.outputs.all_changed_files }}; do
if [[ "$f" == "src/doc/python_script/functions.rst" ]]; then
if [ "$f" = "src/doc/python_script/functions.rst" ]; then
have_func_rst=1
elif [[ "$f" == "src/visitpy/common/MethodDoc.C" ]]; then
elif [ "$f" = "src/visitpy/common/MethodDoc.C" ]; then
have_methdoc_c=1
fi
done
Expand Down

0 comments on commit 580c2e5

Please sign in to comment.