Selaa lähdekoodia

Using diff -u in check_for_diffs

rl1987 7 vuotta sitten
vanhempi
commit
537692c1e3
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      scripts/git/post-merge.git-hook

+ 1 - 1
scripts/git/post-merge.git-hook

@@ -20,7 +20,7 @@ check_for_diffs() {
                then
                         echo "ATTENTION: $1 hook has changed:"
                         echo "==============================="
-                        diff "$installed" "$latest"
+                        diff -u "$installed" "$latest"
                fi
         fi
 }