From: Chris Koeritz Date: Fri, 4 Apr 2014 14:29:02 +0000 (-0400) Subject: added script to fix cygwin issues with paths, where windows apps need a real TMP... X-Git-Tag: 2.140.90~802 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=533c009ada6c8302d76cf2e3c1179f7e1c8e981b;p=feisty_meow.git added script to fix cygwin issues with paths, where windows apps need a real TMP and cygwin barfs on same. --- 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 $@ +