Skip to content

Commit d5c53d0

Browse files
committed
fix #27
1 parent f860bda commit d5c53d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/RemoteSync.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class RemoteSync
139139
targetPath = path.join(targetPath, path.relative(@projectPath, localPath))
140140
diffCmd = atom.config.get('remote-sync.difftoolCommand')
141141
exec ?= require("child_process").exec
142-
exec "#{diffCmd} \"#{localPath}\" \"#{targetPath}\"", (err)->
142+
exec "\"#{diffCmd}\" \"#{localPath}\" \"#{targetPath}\"", (err)->
143143
return if not err
144144
getLogger().error """Check [difftool Command] in your settings (remote-sync).
145145
Command error: #{err}

0 commit comments

Comments
 (0)