Fix DSD path

This commit is contained in:
Aetias
2025-03-16 12:28:57 +01:00
parent 0a03d5129c
commit 96921cb237
+1 -1
View File
@@ -95,7 +95,7 @@ if platform is None:
exit(1)
EXE = platform.exe
WINE = args.wine if platform.system != "windows" else ""
DSD = str(args.dsd) or os.path.join('.', str(root_path / f"dsd{EXE}"))
DSD = str(args.dsd or os.path.join('.', str(root_path / f"dsd{EXE}")))
OBJDIFF = os.path.join('.', str(root_path / f"objdiff-cli{EXE}"))
CC = os.path.join('.', str(mwcc_path / "mwccarm.exe"))
LD = os.path.join('.', str(mwcc_path / "mwldarm.exe"))