Skip to content

Commit 1a1d170

Browse files
nicksndeloof
authored andcommitted
change org name from windmilleng to tilt-dev (#3346)
1 parent fd3e0bb commit 1a1d170

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

pkg/watch/notify.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"path/filepath"
77

8-
"github.com/windmilleng/tilt/pkg/logger"
8+
"github.com/tilt-dev/tilt/pkg/logger"
99
)
1010

1111
var (

pkg/watch/notify_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515
"github.com/stretchr/testify/assert"
1616
"github.com/stretchr/testify/require"
1717

18-
"github.com/windmilleng/tilt/internal/dockerignore"
19-
"github.com/windmilleng/tilt/internal/testutils/tempdir"
20-
"github.com/windmilleng/tilt/pkg/logger"
18+
"github.com/tilt-dev/tilt/internal/dockerignore"
19+
"github.com/tilt-dev/tilt/internal/testutils/tempdir"
20+
"github.com/tilt-dev/tilt/pkg/logger"
2121
)
2222

2323
// Each implementation of the notify interface should have the same basic

pkg/watch/paths.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/pkg/errors"
99

10-
"github.com/windmilleng/tilt/internal/ospath"
10+
"github.com/tilt-dev/tilt/internal/ospath"
1111
)
1212

1313
func greatestExistingAncestors(paths []string) ([]string, error) {

pkg/watch/paths_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"github.com/stretchr/testify/assert"
88

9-
"github.com/windmilleng/tilt/internal/testutils/tempdir"
9+
"github.com/tilt-dev/tilt/internal/testutils/tempdir"
1010
)
1111

1212
func TestGreatestExistingAncestor(t *testing.T) {

pkg/watch/watcher_darwin.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66

77
"github.com/pkg/errors"
88

9-
"github.com/windmilleng/tilt/pkg/logger"
9+
"github.com/tilt-dev/tilt/pkg/logger"
1010

11-
"github.com/windmilleng/fsevents"
11+
"github.com/tilt-dev/fsevents"
1212
)
1313

1414
// A file watcher optimized for Darwin.

pkg/watch/watcher_naive.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"path/filepath"
99

1010
"github.com/pkg/errors"
11-
"github.com/windmilleng/fsnotify"
11+
"github.com/tilt-dev/fsnotify"
1212

13-
"github.com/windmilleng/tilt/internal/ospath"
14-
"github.com/windmilleng/tilt/pkg/logger"
13+
"github.com/tilt-dev/tilt/internal/ospath"
14+
"github.com/tilt-dev/tilt/pkg/logger"
1515
)
1616

1717
// A naive file watcher that uses the plain fsnotify API.

0 commit comments

Comments
 (0)