added script to fix cygwin issues with paths, where windows apps need a real TMP...
authorChris Koeritz <fred@gruntose.com>
Fri, 4 Apr 2014 14:29:02 +0000 (10:29 -0400)
committerChris Koeritz <fred@gruntose.com>
Fri, 4 Apr 2014 14:29:02 +0000 (10:29 -0400)
scripts/rev_control/svn.sh [new file with mode: 0644]

diff --git a/scripts/rev_control/svn.sh b/scripts/rev_control/svn.sh
new file mode 100644 (file)
index 0000000..1fa144b
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+if [ "$OPERATING_SYSTEM" = "WIN32" ]; then
+  source $FEISTY_MEOW_SCRIPTS/core/functions.sh
+
+  TMP="$(dos_to_unix_path "$TMP")"
+fi
+
+echo TMP is $TMP 
+
+/usr/bin/svn $@
+