Skip to content

Commit

Permalink
fix #27
Browse files Browse the repository at this point in the history
  • Loading branch information
yongkangchen committed May 23, 2015
1 parent f860bda commit d5c53d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/RemoteSync.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class RemoteSync
targetPath = path.join(targetPath, path.relative(@projectPath, localPath))
diffCmd = atom.config.get('remote-sync.difftoolCommand')
exec ?= require("child_process").exec
exec "#{diffCmd} \"#{localPath}\" \"#{targetPath}\"", (err)->
exec "\"#{diffCmd}\" \"#{localPath}\" \"#{targetPath}\"", (err)->
return if not err
getLogger().error """Check [difftool Command] in your settings (remote-sync).
Command error: #{err}
Expand Down

0 comments on commit d5c53d0

Please sign in to comment.