Toolchain: Use correct variable when deleting the QEMU tarball

This commit is contained in:
Gunnar Beutner 2021-07-10 10:25:31 +02:00 committed by Linus Groh
parent c77215fc61
commit 9bc3ad75b4

View file

@ -32,7 +32,7 @@ pushd "$DIR/Tarballs"
echo "qemu md5='$md5'"
if [ "$md5" != "$QEMU_MD5SUM" ] ; then
echo "qemu md5 sum mismatching, please run script again."
rm $$QEMU_VERSION.tar.xz
rm -f $QEMU_VERSION.tar.xz
exit 1
fi