removing one more troublesome special case for windows.
authorChris Koeritz <fred@gruntose.com>
Wed, 7 Mar 2012 21:33:53 +0000 (16:33 -0500)
committerChris Koeritz <fred@gruntose.com>
Wed, 7 Mar 2012 21:33:53 +0000 (16:33 -0500)
scripts/core/create_tempdir.sh

index 9cbb89f9817d94d9eb147c6b5c27521c04b37937..5a13bb888dc424bfc5d3b3c9c3007632af0159a6 100644 (file)
@@ -10,11 +10,8 @@ if [ ! -z "$SHELL_DEBUG" ]; then echo creating temporary directory...; fi
 source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
 
 if [ -z "$TMP" ]; then
+  # main declaration of the transients area.
   export TMP=$HOME/.tmp
-    # main declaration of the transients area.
-  if [ "$OS" = "Windows_NT" ]; then
-    export TMP=c:/tmp
-  fi
 fi
 
 LOG_FILE=$TMP/zz_transients.log