For some weeks now the pull_all script on the wiki page
http://developer.qt.nokia.com/wiki/Building_PySide_on_Linux
has been in an in a strange state:

#!/usr/bin/env bash
 
alldirs=("apiextractor" "generatorrunner" "shiboken" "pyside" 
"pyside-mobility")
 
if [ $# == 0 ] ; then
    dirs=("${alldirs[@]}")
else
    dirs=("$@")
fi
 
for d in "${dirs[@]}" ; do
    (cd "$d"
    git pull origin master
    ) # exit from "$d"
done

I do not think that the line
----------------------------
git pull origin master
---------------------------
does anything useful  

Does it matter if the installation script is inoperative?  Not 
for me for I do it by hand for each of the five packages, but 
for someone who is to trying for the first time, it sure does 
matter.  

Is it possible to revert the wiki to a more sane state of the 
script  and fix this? It should be, but I can not see how.

OldAl.

-- 
Algis
http://akabaila.pcug.org.au/StructuralAnalysis.pdf
_______________________________________________
PySide mailing list
PySide@lists.openbossa.org
http://lists.openbossa.org/listinfo/pyside

Reply via email to