Index: branches/azimutz/Package/package/buildpkg.sh =================================================================== --- branches/azimutz/Package/package/buildpkg.sh (revision 1481) +++ branches/azimutz/Package/package/buildpkg.sh (revision 1482) @@ -294,11 +294,10 @@ for (( i = 0 ; i < ${#themes[@]} ; i++ )) do theme=$( echo ${themes[$i]##*/} | awk 'BEGIN{OFS=FS=""}{$1=toupper($1);print}' ) - mkdir -p "${1}/${theme}/Root" - rsync -r --exclude=.svn "${themes[$i]}/" "${1}/${theme}/Root/${theme}" - # clean .../sym/package/Theme, not .../artwork/themes/theme - find "${1}/${theme}" -name '.DS_Store' -or -name '.svn' -exec rm -R {} \+ - find "${1}/${theme}" -type f -exec chmod 644 {} \+ # chmod ? + mkdir -p "${1}/${theme}/Root/" + rsync -r --exclude=.* "${themes[$i]}/" "${1}/${theme}/Root/${theme}" + # chmod ? + find "${1}/${theme}" -type f -exec chmod 644 {} \+ echo " [BUILD] ${theme}" buildpackage "${1}/${theme}" "/Extra/Themes" "" "start_selected=\"false\"" >/dev/null 2>&1 # rm -R -f "${1}/${i##*/}" # = .../sym/package/0, .../1, etc... not needed anyway