Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tools/build/build_asf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ fi
echo 'md5'
gpg -v --print-md MD5 apache-cloudstack-$version-src.tar.bz2 > apache-cloudstack-$version-src.tar.bz2.md5

echo 'sha'
gpg -v --print-md SHA512 apache-cloudstack-$version-src.tar.bz2 > apache-cloudstack-$version-src.tar.bz2.sha
echo 'sha512'
gpg -v --print-md SHA512 apache-cloudstack-$version-src.tar.bz2 > apache-cloudstack-$version-src.tar.bz2.sha512

echo 'verify'
gpg -v --verify apache-cloudstack-$version-src.tar.bz2.asc apache-cloudstack-$version-src.tar.bz2
Expand Down Expand Up @@ -187,11 +187,11 @@ if [ "$committosvn" == "yes" ]; then
cp $outputdir/apache-cloudstack-$version-src.tar.bz2 .
cp $outputdir/apache-cloudstack-$version-src.tar.bz2.asc .
cp $outputdir/apache-cloudstack-$version-src.tar.bz2.md5 .
cp $outputdir/apache-cloudstack-$version-src.tar.bz2.sha .
cp $outputdir/apache-cloudstack-$version-src.tar.bz2.sha512 .
svn add apache-cloudstack-$version-src.tar.bz2
svn add apache-cloudstack-$version-src.tar.bz2.asc
svn add apache-cloudstack-$version-src.tar.bz2.md5
svn add apache-cloudstack-$version-src.tar.bz2.sha
svn add apache-cloudstack-$version-src.tar.bz2.sha512
svn commit -m "Committing release candidate artifacts for $version to dist/dev/cloudstack in preparation for release vote"
fi

Expand Down