mirror of
https://github.com/samuelncui/yatm.git
synced 2026-01-05 04:55:23 +00:00
9 lines
174 B
Bash
Executable File
9 lines
174 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex;
|
|
|
|
CURDIR=$(cd $(dirname $0); pwd);
|
|
cd ${CURDIR};
|
|
|
|
go build -o ./output/yatm-httpd ./cmd/httpd;
|
|
go build -o ./output/yatm-lto-info ./cmd/lto-info;
|