Skip to content

Commit

Permalink
Fixed typo with folder creation in action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Zanger67 committed Jul 20, 2024
1 parent b55214d commit 4d33a92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ runs:
- name: Ensure my-submissions directory exists
shell: bash
run: |
if [ -d .my-submissions/ ]; then
if [ -d my-submissions/ ]; then
echo "my-submissions directory found"
else
echo "my-submissions directory not found. Creating..."
mkdir my-submissions
mkdir "my-submissions"
fi
cd .readme_updater
Expand Down

0 comments on commit 4d33a92

Please sign in to comment.