release: crypt and sign with different keys

This commit is contained in:
schneider 2011-08-05 22:32:20 +02:00
parent 8a5c93be66
commit 9fb33abe8b
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,8 @@ fi
for a in $TARG/files/*.c0d $TARG/files/*.int $TARG/files/*.nik ; do
echo Crypting $a
../tools/crypto/xxtea -e -k $ekey -s -k $skey $a
../tools/crypto/xxtea -e -k $ekey $a
../tools/crypto/xxtea -s -k $skey $a
done