mirror of
https://github.com/weaveworks/scope.git
synced 2026-02-14 18:09:59 +00:00
11 lines
196 B
Bash
Executable File
11 lines
196 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
SCOPE_SRC=$GOPATH/src/github.com/weaveworks/scope
|
|
|
|
# Mount the scope repo:
|
|
# -v $(pwd):/go/src/github.com/weaveworks/scope
|
|
|
|
make -C "$SCOPE_SRC" BUILD_IN_CONTAINER=false "$@"
|