mirror of
https://github.com/woodchen-ink/webp_server_go.git
synced 2025-07-18 13:42:02 +08:00
15 lines
246 B
Batchfile
15 lines
246 B
Batchfile
cd ..
|
|
git pull
|
|
|
|
IF EXIST "%PROGRAMFILES(X86)%" (GOTO 64BIT) ELSE (GOTO 32BIT)
|
|
:64BIT
|
|
go build -o webp-server-windows-amd64.exe webp-server.go
|
|
GOTO END
|
|
|
|
:32BIT
|
|
echo 32-bit...
|
|
go build -o webp-server-windows-i386.exe webp-server.go
|
|
GOTO END
|
|
|
|
pause
|