diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-07-10 10:25:31 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-07-10 11:13:56 +0100 |
commit | 9bc3ad75b44cc63bcbdb85d3f7c1c21b8735f9e7 (patch) | |
tree | a9663fe610a824b82bf7f13bf0c3997988d0ac65 /Toolchain | |
parent | c77215fc6173ad33c7135f699251507e9a8a5eec (diff) | |
download | serenity-9bc3ad75b44cc63bcbdb85d3f7c1c21b8735f9e7.zip |
Toolchain: Use correct variable when deleting the QEMU tarball
Diffstat (limited to 'Toolchain')
-rwxr-xr-x | Toolchain/BuildQemu.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Toolchain/BuildQemu.sh b/Toolchain/BuildQemu.sh index 5384292821..32fa599edf 100755 --- a/Toolchain/BuildQemu.sh +++ b/Toolchain/BuildQemu.sh @@ -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 |