fix errors with the find command

This commit is contained in:
Johnny Cena 2025-08-20 11:47:53 +02:00
parent 54764ca814
commit 546e176f28

View File

@ -76,10 +76,10 @@ jobs:
for category in core shapes textures models shaders text audio; do
cd $category
target_dir="${{ github.workspace }}/../raylib.com/examples/$category/"
find . -type f -name "*.wasm" -exec cp {} "$target_dir" +
find . -type f -name "*.html" -exec cp {} "$target_dir" +
find . -type f -name "*.js" -exec cp {} "$target_dir" +
find . -type f -name "*.data" -exec cp {} "$target_dir" +
find . -type f -name "*.wasm" -exec cp {} "$target_dir" \;
find . -type f -name "*.html" -exec cp {} "$target_dir" \;
find . -type f -name "*.js" -exec cp {} "$target_dir" \;
find . -type f -name "*.data" -exec cp {} "$target_dir" \;
cd ..
done
- name: Push changes to raylib.com repo