fix: make shellcheck happy by removing pointless echo

This commit is contained in:
Martin Wimpress 2024-07-02 16:16:55 +01:00 committed by Martin Wimpress
parent ec13f369c5
commit b519043ddb
1 changed files with 1 additions and 1 deletions

View File

@ -3330,7 +3330,7 @@ function create_vm() {
# fallback to checking if quickemu is in the current directory.
function resolve_quickemu() {
if command -v quickemu >/dev/null 2>&1; then
echo "$(command -v quickemu)"
command -v quickemu
elif [ -f "./quickemu" ]; then
echo "$(pwd)/quickemu"
else