Skip to content

Commit 7c048a0

Browse files
committed
fix: space in basic filename under windows
1 parent 89ed3b4 commit 7c048a0

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

7800bas.bat

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
@echo off
22
if X"%bas7800dir%" == X goto nobasic
33
:tryanyway
4-
rem 7800preprocess <"%~f1" | 7800basic.exe -i "%bas7800dir%" -b "%1"
5-
7800preprocess.exe <"%~f1" >"%~f1.pre"
6-
7800basic.exe -i "%bas7800dir%" -b "%1" -p "%1.pre"
4+
7800preprocess.exe <"%~f1" >"%~1.pre"
5+
7800basic.exe -i "%bas7800dir%" -b "%~1" -p "%~1.pre"
76
if errorlevel 1 goto basicerror
87
del "%1.pre"
98
if X%2 == X-O goto optimize

0 commit comments

Comments
 (0)