From 1a1d1707ed1531fed955ee1e70fdfdf2b8365794 Mon Sep 17 00:00:00 2001 From: Nick Santos Date: Fri, 15 May 2020 10:34:39 -0400 Subject: [PATCH] change org name from windmilleng to tilt-dev (#3346) --- pkg/watch/notify.go | 2 +- pkg/watch/notify_test.go | 6 +++--- pkg/watch/paths.go | 2 +- pkg/watch/paths_test.go | 2 +- pkg/watch/watcher_darwin.go | 4 ++-- pkg/watch/watcher_naive.go | 6 +++--- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pkg/watch/notify.go b/pkg/watch/notify.go index 638edbbcd..cf67cb28f 100644 --- a/pkg/watch/notify.go +++ b/pkg/watch/notify.go @@ -5,7 +5,7 @@ import ( "fmt" "path/filepath" - "github.com/windmilleng/tilt/pkg/logger" + "github.com/tilt-dev/tilt/pkg/logger" ) var ( diff --git a/pkg/watch/notify_test.go b/pkg/watch/notify_test.go index 6aca38ec8..d184d40d2 100644 --- a/pkg/watch/notify_test.go +++ b/pkg/watch/notify_test.go @@ -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 diff --git a/pkg/watch/paths.go b/pkg/watch/paths.go index b1056e810..d0651d848 100644 --- a/pkg/watch/paths.go +++ b/pkg/watch/paths.go @@ -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) { diff --git a/pkg/watch/paths_test.go b/pkg/watch/paths_test.go index 155a95451..8e2dd617a 100644 --- a/pkg/watch/paths_test.go +++ b/pkg/watch/paths_test.go @@ -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) { diff --git a/pkg/watch/watcher_darwin.go b/pkg/watch/watcher_darwin.go index 14b4999e7..3c9b6393b 100644 --- a/pkg/watch/watcher_darwin.go +++ b/pkg/watch/watcher_darwin.go @@ -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. diff --git a/pkg/watch/watcher_naive.go b/pkg/watch/watcher_naive.go index c015e8695..3993738dc 100644 --- a/pkg/watch/watcher_naive.go +++ b/pkg/watch/watcher_naive.go @@ -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.