Bug 1283599 - Repair DevTools file watcher. r=tromey

MozReview-Commit-ID: IRLxJ4ZJ5ti
This commit is contained in:
J. Ryan Stinnett 2016-06-30 15:09:14 -05:00
Родитель 0a4e1558a6
Коммит fbdd664cb0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -15,7 +15,7 @@ function watchFiles(path, onFileChanged) {
// chrome). This means that this system will only work when built
// files are symlinked, so that these URIs actually read from
// local sources. There might be a better way to do this.
const { newPath } = event.data;
const { path: newPath } = event.data;
onFileChanged(newPath);
};