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 3, 2024
1 parent 5184fd8 commit d29e76c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quickget
Original file line number Diff line number Diff line change
Expand Up @@ -3355,7 +3355,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 d29e76c

Please sign in to comment.