Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mishig25 committed Feb 15, 2024
1 parent 829f042 commit 81bfd5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check_notebooks_lowercase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# Change to the directory where you want to check filenames
cd notebooks
# Find files with uppercase characters in their names
files=$(find . -type f | grep '[A-Z]')
files=$(find . -type f | grep '[A-Z]' || true)
if [ -n "$files" ]; then
echo "The following files are not lowercase:"
echo "$files"
Expand Down

0 comments on commit 81bfd5f

Please sign in to comment.