allow to build with relative urls

This commit is contained in:
Jörg Thalheim 2016-04-13 14:33:27 +02:00
parent 0d7a8e706d
commit b20a4a06d6
3 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,6 @@
# Get microservice callgraph
$ go get github.com/mic92/clusterssh
$ go build .
$ wget http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar
$ java -jar selenium-server-standalone-2.53.0.jar

View File

@ -9,9 +9,9 @@ import (
"syscall"
"time"
"github.com/mic92/callgraph/rancher"
"github.com/mic92/callgraph/sharelatex"
"github.com/mic92/callgraph/sysdig"
"./rancher"
"./sharelatex"
"./sysdig"
)
var (

View File

@ -10,7 +10,7 @@ import (
"runtime"
"testing"
"github.com/mic92/callgraph/sysdig"
"../sysdig"
)
func assert(tb testing.TB, condition bool, msg string, v ...interface{}) {