hook: only print the note about native cmd translation if it actually changes
authorMatt Harbison <matt_harbison@yahoo.com>
Sun, 15 Jul 2018 23:51:43 -0400
changeset 38723 f9b2d996ffa5
parent 38722 2009d84f245a
child 38724 02b5b5c1bba8
hook: only print the note about native cmd translation if it actually changes This makes it so that it will never occur on a non Windows platform.
mercurial/hook.py
--- a/mercurial/hook.py	Sun Jul 15 23:46:09 2018 -0400
+++ b/mercurial/hook.py	Sun Jul 15 23:51:43 2018 -0400
@@ -140,8 +140,10 @@
         env['HG_' + k.upper()] = v
 
     if ui.configbool('hooks', 'tonative.%s' % name, False):
-        ui.note(_('converting hook "%s" to native\n') % name)
+        oldcmd = cmd
         cmd = procutil.shelltonative(cmd, env)
+        if cmd != oldcmd:
+            ui.note(_('converting hook "%s" to native\n') % name)
 
     ui.note(_("running hook %s: %s\n") % (name, cmd))