mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 10:41:14 +00:00
12 lines
198 B
Bash
Executable File
12 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eux
|
|
|
|
# Mount the scope repo:
|
|
# -v $(pwd):/go/src/github.com/weaveworks/scope
|
|
|
|
cd $GOPATH/src/github.com/weaveworks/scope
|
|
rm $1 2>/dev/null || true
|
|
make BUILD_IN_CONTAINER=false $@
|
|
|