Skip to content

Commit

Permalink
Changed license check script to view current directory instead of fem…
Browse files Browse the repository at this point in the history
…r/femr/LICENSE
  • Loading branch information
noah1013 committed May 15, 2024
1 parent 3200c43 commit c4b37cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/license_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
uses: actions/checkout@v2

- name: List contents of femr directory
run: ls -laR femr
run: ls -laR .

- name: Check if file exists
run: |
if [ ! -f "femr/LICENSE" ]; then
if [ ! -f "./LICENSE" ]; then
echo "File does not exist. Exiting with failure."
exit 1
fi
Expand Down

0 comments on commit c4b37cd

Please sign in to comment.