1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

Merge pull request #234 from goreleaser/internal

moving some file to the internal folder
This commit is contained in:
Carlos Alexandro Becker 2017-05-14 11:17:07 -03:00 committed by GitHub
commit da000288ad
9 changed files with 4 additions and 4 deletions

View File

@ -11,8 +11,8 @@ import (
"github.com/goreleaser/goreleaser/context"
"github.com/goreleaser/goreleaser/internal/ext"
"github.com/goreleaser/goreleaser/pipeline/archive/tar"
"github.com/goreleaser/goreleaser/pipeline/archive/zip"
"github.com/goreleaser/goreleaser/internal/tar"
"github.com/goreleaser/goreleaser/internal/zip"
"github.com/mattn/go-zglob"
"golang.org/x/sync/errgroup"
)

View File

@ -11,9 +11,9 @@ import (
"text/template"
"github.com/goreleaser/goreleaser/checksum"
"github.com/goreleaser/goreleaser/client"
"github.com/goreleaser/goreleaser/config"
"github.com/goreleaser/goreleaser/context"
"github.com/goreleaser/goreleaser/internal/client"
)
// ErrNoDarwin64Build when there is no build for darwin_amd64 (goos doesn't

View File

@ -7,8 +7,8 @@ import (
"os"
"path/filepath"
"github.com/goreleaser/goreleaser/client"
"github.com/goreleaser/goreleaser/context"
"github.com/goreleaser/goreleaser/internal/client"
"golang.org/x/sync/errgroup"
)