|
From: <ha...@us...> - 2008-04-25 00:20:56
|
Revision: 1983
http://cogkit.svn.sourceforge.net/cogkit/?rev=1983&view=rev
Author: hategan
Date: 2008-04-24 17:20:53 -0700 (Thu, 24 Apr 2008)
Log Message:
-----------
not all versions of mktemp support -t
Modified Paths:
--------------
trunk/current/src/cog/modules/provider-coaster/resources/bootstrap.sh
Modified: trunk/current/src/cog/modules/provider-coaster/resources/bootstrap.sh
===================================================================
--- trunk/current/src/cog/modules/provider-coaster/resources/bootstrap.sh 2008-04-24 21:01:35 UTC (rev 1982)
+++ trunk/current/src/cog/modules/provider-coaster/resources/bootstrap.sh 2008-04-25 00:20:53 UTC (rev 1983)
@@ -14,7 +14,7 @@
if [ "$L" == "" ]; then
L=~/coaster-boot-$ID.log
fi
-DJ=`mktemp -t bootstrap.XXXXXX`
+DJ=`mktemp /tmp/bootstrap.XXXXXX`
echo "BS: $BS" >>$L
wget -c -q $BS/coaster-bootstrap.jar -O $DJ >>$L 2>&1
if [ "$?" != "0" ]; then
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|