projects
/
feisty_meow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3d191a7
)
added script to fix cygwin issues with paths, where windows apps need a real TMP...
author
Chris Koeritz
<fred@gruntose.com>
Fri, 4 Apr 2014 14:29:02 +0000
(10:29 -0400)
committer
Chris 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]
patch
|
blob
diff --git a/scripts/rev_control/svn.sh
b/scripts/rev_control/svn.sh
new file mode 100644
(file)
index 0000000..
1fa144b
--- /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 $@
+