From 546e176f283ad89ebd0d4e8fd5ec7fde0d271e35 Mon Sep 17 00:00:00 2001 From: Johnny Cena Date: Wed, 20 Aug 2025 11:47:53 +0200 Subject: [PATCH] fix errors with the find command --- .github/workflows/update_examples.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update_examples.yml b/.github/workflows/update_examples.yml index 1164cfb72..73809693c 100644 --- a/.github/workflows/update_examples.yml +++ b/.github/workflows/update_examples.yml @@ -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