From 533c009ada6c8302d76cf2e3c1179f7e1c8e981b Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Fri, 4 Apr 2014 10:29:02 -0400 Subject: [PATCH] added script to fix cygwin issues with paths, where windows apps need a real TMP and cygwin barfs on same. --- scripts/rev_control/svn.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 scripts/rev_control/svn.sh diff --git a/scripts/rev_control/svn.sh b/scripts/rev_control/svn.sh new file mode 100644 index 00000000..1fa144b0 --- /dev/null +++ b/scripts/rev_control/svn.sh @@ -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 $@ + -- 2.34.1