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

This commit is contained in:
Stephen Seo 2023-12-12 16:39:20 +09:00
parent f7730a4d61
commit 7797779618

View file

@ -57,7 +57,7 @@ fi
# Validate and set up Raylib git clone
if ! [[ -d "$CLONE_DIR" ]]; then
if ! [[ -d "$CLONE_DIR" ]] || ! [[ -d "$CLONE_DIR/.git" ]]; then
if ! git clone --depth 1 --no-single-branch "$RAYLIB_GIT_URL" "$CLONE_DIR"; then
echo "ERROR: Failed to clone Raylib into \"$CLONE_DIR\"!"
exit 4