Browse Source

fix: remove redundant extension assignment in build script

- Eliminated the unnecessary assignment of the ".exe" extension for Windows in build_all.bat to streamline the script and avoid confusion regarding binary naming conventions.
pull/85/head
Vaggelis kavouras 5 months ago
parent
commit
0f0d1c7d6f
  1. 1
      scripts/build_all.bat

1
scripts/build_all.bat

@ -33,7 +33,6 @@ mkdir "..\bin" 2>nul
set "os=%~1"
set "arch=%~2"
set "ext="
if "%os%"=="windows" set "ext=.exe"
echo %GREEN%!EN_MESSAGES[5]! %os%/%arch%%RESET%

Loading…
Cancel
Save