Skip to content

Commit

Permalink
Update structures.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Starman3787 committed Aug 17, 2024
1 parent f3af97e commit 1bca16f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/structures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:
for file in $(find ./src/structures -name '*.js');
do
echo "Adding file to export $file"
output="$output export * as $(basename $file .js) from './structures/$(basename $file)';\n"
output="$output export \* as $(basename $file .js) from './structures/$(basename $file)';\n"
done
for file in $(find ./src/managers -name '*.js');
do
echo "Adding file to export $file"
output="$output export * as $(basename $file .js) from './managers/$(basename $file)';\n"
output="$output export \* as $(basename $file .js) from './managers/$(basename $file)';\n"
done
echo -e $output > ./src/structures.js
Expand Down

0 comments on commit 1bca16f

Please sign in to comment.