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 # Get microservice callgraph
$ go get github.com/mic92/clusterssh
$ go build . $ go build .
$ wget http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar $ 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 $ java -jar selenium-server-standalone-2.53.0.jar

View File

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

View File

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