You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ncdns/testdata/move_to_gopath.bash

13 lines
343 B
Bash

#!/usr/bin/env bash
set -euxo pipefail
shopt -s nullglob globstar
# set GOPATH if empty (travis sets it, but useful for humans)
GOPATH="$(go env GOPATH)"
export GOPATH
mkdir -p "$GOPATH"/src/github.com/"$CIRRUS_REPO_OWNER"
cp -av "$PWD" "$GOPATH"/src/github.com/"$CIRRUS_REPO_FULL_NAME"
cd "$GOPATH"/src/github.com/"$CIRRUS_REPO_FULL_NAME"