3
0

rename import paths

This commit is contained in:
Tit Petric 2018-07-05 10:44:14 +02:00
parent 0778b0920d
commit 9eeffef679
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ for NAME in $NAMES; do
for ARCH in $ARCHS; do
for OS in $OSES; do
echo $OS $ARCH $NAME
docker run --rm -v $(pwd):/go/src/github.com/titpetric/$PROJECT -w /go/src/github.com/titpetric/$PROJECT -e GOOS=${OS} -e GOARCH=${ARCH} -e CGO_ENABLED=0 -e GOARM=7 titpetric/golang go build -o build/${NAME}-${OS}-${ARCH} cmd/${NAME}/*.go
docker run --rm -v $(pwd):/go/src/github.com/crusttech/$PROJECT -w /go/src/github.com/crusttech/$PROJECT -e GOOS=${OS} -e GOARCH=${ARCH} -e CGO_ENABLED=0 -e GOARM=7 golang:1.10-alpine go build -o build/${NAME}-${OS}-${ARCH} cmd/${NAME}/*.go
if [ $? -eq 0 ]; then
echo OK
fi

View File

@ -10,7 +10,7 @@ import (
"github.com/go-chi/chi"
"github.com/titpetric/crust/crm"
"github.com/crusttech/crust/crm"
"github.com/titpetric/factory"
)

View File

@ -10,7 +10,7 @@ import (
"github.com/go-chi/chi"
"github.com/titpetric/crust/sam"
"github.com/crusttech/crust/sam"
"github.com/titpetric/factory"
)