parent
4d381fccb0
commit
15e71d383e
|
@ -1,6 +1,7 @@
|
||||||
# June, 2015
|
# June, 2015
|
||||||
|
|
||||||
* Don't return partial lines (PR #40)
|
* Don't return partial lines (PR #40)
|
||||||
|
* Use stable version of fsnotify (#46)
|
||||||
|
|
||||||
# July, 2014
|
# July, 2014
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ package watch
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/ActiveState/tail/util"
|
"github.com/ActiveState/tail/util"
|
||||||
"github.com/howeyc/fsnotify"
|
"gopkg.in/fsnotify.v0"
|
||||||
"gopkg.in/tomb.v1"
|
"gopkg.in/tomb.v1"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
package watch
|
package watch
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/howeyc/fsnotify"
|
"gopkg.in/fsnotify.v0"
|
||||||
"log"
|
"log"
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue