We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f2fc4 commit b82e702Copy full SHA for b82e702
index.coffee
@@ -30,8 +30,10 @@ initProject = (projectPaths)->
30
31
for projectPath in projectPaths
32
projectPath = fs.realpathSync(projectPath)
33
+ continue if projectDict[projectPath]
34
RemoteSync ?= require "./lib/RemoteSync"
- projectDict[projectPath] ?= RemoteSync.create(projectPath)
35
+ obj = RemoteSync.create(projectPath)
36
+ projectDict[projectPath] = obj if obj
37
38
handleEvent = (e, cmd)->
39
[projectPath, fullPath] = getEventPath(e)
0 commit comments