summaryrefslogtreecommitdiff
path: root/Chalice/tests/test-scripts/diff.bat
diff options
context:
space:
mode:
Diffstat (limited to 'Chalice/tests/test-scripts/diff.bat')
-rw-r--r--Chalice/tests/test-scripts/diff.bat21
1 files changed, 0 insertions, 21 deletions
diff --git a/Chalice/tests/test-scripts/diff.bat b/Chalice/tests/test-scripts/diff.bat
deleted file mode 100644
index 87fa935f..00000000
--- a/Chalice/tests/test-scripts/diff.bat
+++ /dev/null
@@ -1,21 +0,0 @@
-@echo off
-
-set differ="C:\Program Files\TortoiseSVN\bin\TortoiseMerge.exe"
-if exist %differ% goto :diff
-if not exist %differ% goto :txtdiff
-
-:txtdiff
-echo ====================================
-echo Reference output: %1
-echo ------------------------------------
-type "%1"
-echo ====================================
-echo Currenct output: %2
-echo ------------------------------------
-type "%2"
-echo ====================================
-goto :eof
-
-:diff
-%differ% "%1" "%2"
-goto :eof