mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
7 lines
165 B
Bash
Executable file
7 lines
165 B
Bash
Executable file
#!/bin/bash
|
|
set -eux
|
|
|
|
basePath="$GOPATH/src/github.com/dnote/dnote/pkg/server/api"
|
|
|
|
cd "$basePath"
|
|
GOOS=linux GOARCH=amd64 go build -o "$basePath/build/api" main.go
|