~j-harbott/cirros/dev

« back to all changes in this revision

Viewing changes to doc/create-release.txt

  • Committer: Scott Moser
  • Date: 2011-10-20 15:44:14 UTC
  • Revision ID: smoser@ubuntu.com-20111020154414-gsqx22awj97l3mtm
add TODO

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
done
60
60
 
61
61
chmod 644 "$out/release/"*
 
62
 
 
63
( cd $out/release/ && md5sum $(ls * | grep -v .asc) > MD5SUMS ) 
 
64
 
 
65
for x in "$out/release/"*; do
 
66
   [ "${x%.asc}" = "$x" ] || continue
 
67
   [ -e "$x.asc" ] && continue
 
68
   gpg --armor --sign --detach-sig "$x"
 
69
done
 
70