change org name from windmilleng to tilt-dev (#3346)

This commit is contained in:
Nick Santos 2020-05-15 10:34:39 -04:00 committed by Nicolas De loof
parent fd3e0bbe2b
commit 1a1d1707ed
6 changed files with 11 additions and 11 deletions

View File

@ -5,7 +5,7 @@ import (
"fmt"
"path/filepath"
"github.com/windmilleng/tilt/pkg/logger"
"github.com/tilt-dev/tilt/pkg/logger"
)
var (

View File

@ -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

View File

@ -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) {

View File

@ -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) {

View File

@ -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.

View File

@ -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.