Skip to content

Commit

Permalink
fix: make shellcheck happy by removing pointless echo
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed Jul 2, 2024
1 parent ec13f36 commit d0e7a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickget
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d0e7a45

Please sign in to comment.