mirror of https://github.com/docker/compose.git
change org name from windmilleng to tilt-dev (#3346)
This commit is contained in:
parent
fd3e0bbe2b
commit
1a1d1707ed
|
@ -5,7 +5,7 @@ import (
|
|||
"fmt"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/windmilleng/tilt/pkg/logger"
|
||||
"github.com/tilt-dev/tilt/pkg/logger"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -15,9 +15,9 @@ import (
|
|||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/windmilleng/tilt/internal/dockerignore"
|
||||
"github.com/windmilleng/tilt/internal/testutils/tempdir"
|
||||
"github.com/windmilleng/tilt/pkg/logger"
|
||||
"github.com/tilt-dev/tilt/internal/dockerignore"
|
||||
"github.com/tilt-dev/tilt/internal/testutils/tempdir"
|
||||
"github.com/tilt-dev/tilt/pkg/logger"
|
||||
)
|
||||
|
||||
// Each implementation of the notify interface should have the same basic
|
||||
|
|
|
@ -7,7 +7,7 @@ import (
|
|||
|
||||
"github.com/pkg/errors"
|
||||
|
||||
"github.com/windmilleng/tilt/internal/ospath"
|
||||
"github.com/tilt-dev/tilt/internal/ospath"
|
||||
)
|
||||
|
||||
func greatestExistingAncestors(paths []string) ([]string, error) {
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"github.com/windmilleng/tilt/internal/testutils/tempdir"
|
||||
"github.com/tilt-dev/tilt/internal/testutils/tempdir"
|
||||
)
|
||||
|
||||
func TestGreatestExistingAncestor(t *testing.T) {
|
||||
|
|
|
@ -6,9 +6,9 @@ import (
|
|||
|
||||
"github.com/pkg/errors"
|
||||
|
||||
"github.com/windmilleng/tilt/pkg/logger"
|
||||
"github.com/tilt-dev/tilt/pkg/logger"
|
||||
|
||||
"github.com/windmilleng/fsevents"
|
||||
"github.com/tilt-dev/fsevents"
|
||||
)
|
||||
|
||||
// A file watcher optimized for Darwin.
|
||||
|
|
|
@ -8,10 +8,10 @@ import (
|
|||
"path/filepath"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
"github.com/windmilleng/fsnotify"
|
||||
"github.com/tilt-dev/fsnotify"
|
||||
|
||||
"github.com/windmilleng/tilt/internal/ospath"
|
||||
"github.com/windmilleng/tilt/pkg/logger"
|
||||
"github.com/tilt-dev/tilt/internal/ospath"
|
||||
"github.com/tilt-dev/tilt/pkg/logger"
|
||||
)
|
||||
|
||||
// A naive file watcher that uses the plain fsnotify API.
|
||||
|
|
Loading…
Reference in New Issue