summaryrefslogtreecommitdiff
path: root/src/intellij/diff.sh
blob: 54f9248608fb275ba9e3698fecdd292d3f547096 (plain) (blame)
1
2
3
4
5
6
7
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