1
0
Files
nex/backend/build.sh

9 lines
118 B
Bash

#!/bin/bash
DST=nex
echo "Building $DST ..."
go build -ldflags="-s -w" -o $DST ./cmd/nex
chmod +x $DST
echo "DONE!"