summaryrefslogtreecommitdiff
path: root/src/intellij/diff.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/intellij/diff.sh')
-rwxr-xr-xsrc/intellij/diff.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/intellij/diff.sh b/src/intellij/diff.sh
new file mode 100755
index 0000000000..54f9248608
--- /dev/null
+++ b/src/intellij/diff.sh
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+#
+# Diffs the SAMPLE files against the working project config.
+#
+export SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
+for f in "$SCRIPT_DIR"/*.{iml,ipr}; do
+ echo $f; diff -u $f.SAMPLE $f;
+done