mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-18 04:34:19 +01:00
* Update protos * Update handlers * Support macaroons and TLS * Add arkd cli * Minor fixes * Update deps * Fixes * Update makefile * Fixes * Fix * Fix * Fix * Remove trusted onboarding from client * Completely remove trusted onboarding * Fix compose files and add --no-macaroon flag to arkd cli * Lint * Remove e2e for trusted onboarding * Add sleep time
18 lines
233 B
Plaintext
Executable File
18 lines
233 B
Plaintext
Executable File
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
PARENT_PATH=$(dirname $(
|
|
cd $(dirname $0)
|
|
pwd -P
|
|
))
|
|
|
|
OS=$(eval "go env GOOS")
|
|
ARCH=$(eval "go env GOARCH")
|
|
|
|
pushd $PARENT_PATH
|
|
mkdir -p build
|
|
GO111MODULE=on go build -o build/arkd-$OS-$ARCH ./cmd/arkd
|
|
popd
|
|
|