Fix typo in third_party_build/wasm_make_raylib.sh
All checks were successful
Build and Publish WASM version of demo / Build-And-Deploy-main (push) Has been skipped
Build and Publish WASM version of demo / Build-And-Deploy-devel (push) Successful in 1m37s

This commit is contained in:
Stephen Seo 2023-12-12 17:02:24 +09:00
parent 7797779618
commit be069d8ab1

View file

@ -118,8 +118,8 @@ pushd src >&/dev/null
# Save the library
install -D -m444 libraylib.a "$OUTPUT_DIR/lib/libraylib.a"
# Save the library and relevant headers
for header in libraylib.a raylib.h raymath.h; do
# Save the relevant headers
for header in raylib.h raymath.h; do
install -D -m444 "$header" "$OUTPUT_DIR/include/$header"
done