87d4316e62
somewhat working example site with conf file
5 lines
167 B
Bash
Executable file
5 lines
167 B
Bash
Executable file
#!/bin/bash
|
|
DIR=$(dirname "$(dirname "$(readlink -f "$0")")") || exit
|
|
BUILD_DIR=$DIR/build
|
|
export GOPATH=$BUILD_DIR
|
|
go get -u github.com/caddyserver/xcaddy/cmd/xcaddy
|