From 2c40a198fe8755640506d7c61544b79ea5f55ca1 Mon Sep 17 00:00:00 2001 From: Feoramund <161657516+Feoramund@users.noreply.github.com> Date: Mon, 16 Jun 2025 18:51:37 -0400 Subject: [PATCH] Make `check_all.sh` executable, fix two typos --- check_all.bat | 4 ++-- check_all.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 check_all.sh diff --git a/check_all.bat b/check_all.bat index 83c7deaa9..c5f7ee399 100644 --- a/check_all.bat +++ b/check_all.bat @@ -1,9 +1,9 @@ @echo off if "%1" == "" ( - echo Checking darwin_amd64 - expect vendor:cgtlf panic + echo Checking darwin_amd64 - expect vendor:cgltf panic odin check examples\all -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -target:darwin_amd64 - echo Checking darwin_arm64 - expect vendor:cgtlf panic + echo Checking darwin_arm64 - expect vendor:cgltf panic odin check examples\all -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -target:darwin_arm64 echo Checking linux_i386 odin check examples\all -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -target:linux_i386 diff --git a/check_all.sh b/check_all.sh old mode 100644 new mode 100755 index fb32b8cc2..568ac55ba --- a/check_all.sh +++ b/check_all.sh @@ -45,9 +45,9 @@ wasm) ;; *) - echo Checking darwin_amd64 - expect vendor:cgtlf panic + echo Checking darwin_amd64 - expect vendor:cgltf panic odin check examples/all -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -target:darwin_amd64 - echo Checking darwin_arm64 - expect vendor:cgtlf panic + echo Checking darwin_arm64 - expect vendor:cgltf panic odin check examples/all -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -target:darwin_arm64 echo Checking linux_i386 odin check examples/all -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -target:linux_i386