Dear Wiki user, You have subscribed to a wiki page or wiki category on "Portals Wiki" for change notification.
The following page has been changed by EricDalquist: http://wiki.apache.org/portals/Pluto/CuttingRelease/PublishDistributionBinaries ------------------------------------------------------------------------------ 6. Update the {{{/www/www.apache.org/dist/portals/pluto/HEADER.html}}} file with the latest version. + + Saving the following as a shell script and updating the version string will place all artifacts in the correct locations and update the symlinks + {{{ + export version=1.1.7 + + cd /www/www.apache.org/dist/portals/pluto/ + mkdir BINARIES/v${version} + mkdir SOURCES/v${version} + cp /www/people.apache.org/builds/portals-pluto/pluto-${version}/pluto-${version}-src* SOURCES/v${version}/ + cp /www/people.apache.org/builds/portals-pluto/pluto-${version}/pluto-${version}-bin* BINARIES/v${version}/ + cp /www/people.apache.org/builds/portals-pluto/pluto-${version}/pluto-${version}-bundle* BINARIES/v${version}/ + cp /www/people.apache.org/builds/portals-pluto/pluto-${version}/pluto-${version}-container* BINARIES/v${version}/ + for file in BINARIES/v${version}/* ; do lnname=`basename $file | sed -e 's/${version}/current/'` ; ln -sf $file $lnname ; done + for file in SOURCES/v${version}/* ; do lnname=`basename $file | sed -e 's/${version}/current/'` ; ln -sf $file $lnname ; done + }}} +
