Skip to content

Commit

Permalink
fix: test local quickemu is executable
Browse files Browse the repository at this point in the history
  • Loading branch information
philclifford committed Aug 27, 2024
1 parent fa71687 commit 58d7cb9
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 @@ -3363,7 +3363,7 @@ function create_config() {
# fallback to checking if quickemu is in the current directory.
function resolve_quickemu() {
command -v quickemu || \
if [ -f "./quickemu" ]; then
if [ -x "./quickemu" ]; then
echo "$(pwd)/quickemu"
else
echo "quickemu not found" >&2
Expand Down

0 comments on commit 58d7cb9

Please sign in to comment.