Skip to content

Commit

Permalink
Fix running executables on Mac OS
Browse files Browse the repository at this point in the history
  • Loading branch information
mkilgore committed Feb 2, 2025
1 parent c0b43e5 commit 73b2896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/qb64pe.bas
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ IF C = 9 THEN 'run
' We have to use a separate script to be able to set environment variables for the program
ExecuteLine$ = "open -b com.apple.terminal " + _CHR_QUOTE + tmpdir$ + "log.command" + _CHR_QUOTE
ELSE
ExecuteLine$ = ExecuteName$
ExecuteLine$ = QuotedFilename$(ExecuteName$) + ModifyCOMMAND$
END IF
ELSEIF os$ = "WIN" THEN
IF GetRCStateVar(ConsoleOn) OR LoggingEnabled THEN
Expand Down

0 comments on commit 73b2896

Please sign in to comment.