Author: jbalunas(a)redhat.com
Date: 2010-05-20 09:45:30 -0400 (Thu, 20 May 2010)
New Revision: 17159
Modified:
root/build/resources/trunk/checkout.sh
Log:
Fixed issue with directory path
Modified: root/build/resources/trunk/checkout.sh
===================================================================
--- root/build/resources/trunk/checkout.sh 2010-05-20 13:29:52 UTC (rev 17158)
+++ root/build/resources/trunk/checkout.sh 2010-05-20 13:45:30 UTC (rev 17159)
@@ -37,7 +37,7 @@
SVNARGS="--quiet"
fi
-if [ -d $DESTINATION ]
+if [ -d "$DESTINATION" ]
then
echo "Checking out to $DESTINATION"
else
@@ -75,13 +75,13 @@
echo
echo =================================
- if [ -d $moduledir ]
+ if [ -d "$moduledir" ]
then
echo "Updating $module"
- svncmd="svn up $SVNARGS $DESTINATION/$module"
+ svncmd="svn up $SVNARGS $moduledir"
else
echo "Checking out $module"
- svncmd="svn co $SVNARGS $url $DESTINATION/$module"
+ svncmd="svn co $SVNARGS $url $moduledir"
fi
echo =================================
Show replies by date