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 c17c0f2 commit 774c9edCopy full SHA for 774c9ed
lib/RemoteSync.coffee
@@ -215,7 +215,8 @@ class RemoteSync
215
setupAutoFileWatch: (filesName,projectPath) ->
216
_this = @
217
setTimeout ->
218
- filesName = filesName.replace(/\//g, '\\')
+ if process.platform == "win32"
219
+ filesName = filesName.replace(/\//g, '\\')
220
fullpath = projectPath + filesName.replace /^\s+|\s+$/g, ""
221
_this.monitorFile(fullpath,false,false)
222
, 250
0 commit comments