9 lines
109 B
Batchfile
9 lines
109 B
Batchfile
@echo off
|
|
|
|
set DST=nex.exe
|
|
|
|
echo Building %DST% ...
|
|
go build -ldflags="-s -w" -o %DST% ./cmd/nex
|
|
|
|
echo DONE!
|