/hg/buildbot: wget.cache.wrapper: Fix regression when wget URL -...

xranby at icedtea.classpath.org xranby at icedtea.classpath.org
Wed Mar 2 06:42:41 PST 2011


changeset 64749190d772 in /hg/buildbot
details: http://icedtea.classpath.org/hg/buildbot?cmd=changeset;node=64749190d772
author: Xerxes R?nby <xerxes at zafena.se>
date: Wed Mar 02 15:25:16 2011 +0100

	wget.cache.wrapper: Fix regression when wget URL -O subdir/file

	2011-03-02 Xerxes Ranby <xerxes at zafena.se>

	 * buildslave/tools/wget.cache.wrapper Fix regression
	when wget URL -O subdir/file


diffstat:

1 file changed, 2 insertions(+)
buildslave/tools/wget.cache.wrapper |    2 ++

diffs (35 lines):

diff -r 72316564535a -r 64749190d772 buildslave/tools/wget.cache.wrapper
--- a/buildslave/tools/wget.cache.wrapper	Wed Mar 02 11:45:22 2011 +0100
+++ b/buildslave/tools/wget.cache.wrapper	Wed Mar 02 15:25:16 2011 +0100
@@ -35,13 +35,14 @@ ARG=$2
 ARG=$2
 FILE=$3
 
+CACHEDIRSUBPATH=$(dirname ${FILE})
+
 if [ ${ARG} == "-O" ] ; then
   if [ ! -e ${CACHEDIR}${URL}/${FILE} ]; then
     # file do not exist in cache
     # download the file to the cache using wget!
 
     # make sure subdirs in the cache exist
-    CACHEDIRSUBPATH=$(dirname ${FILE})
     mkdir -p ${CACHEDIR}${PID}/${URL}/${CACHEDIRSUBPATH}
     mkdir -p ${CACHEDIR}${URL}/${CACHEDIRSUBPATH}
 
@@ -50,13 +51,14 @@ if [ ${ARG} == "-O" ] ; then
     ${WGET} ${ALLARG}
 
     # atomically move the downloaded file to the main cache.
-    mv ${CACHEDIR}${PID}/${URL}/${FILE} ${CACHEDIR}${URL}/
+    mv ${CACHEDIR}${PID}/${URL}/${FILE} ${CACHEDIR}${URL}/${FILE}
   fi
 
   if [ -e ${CACHEDIR}${URL}/${FILE} ] ; then
     # ok good, file exist now in cache
     # copy the file from cache to destination
     cd ${TARGETDIR}
+    mkdir -p ${CACHEDIRSUBPATH}
     cp ${CACHEDIR}${URL}/${FILE} ${FILE}
     exit 0
   else



More information about the distro-pkg-dev mailing list