mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-0: fix for spaces in paths
This commit is contained in:
parent
83098ce2b5
commit
0b5a833339
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ if ("win_x86_64".equals(getCurrentPlatformName())) {
|
||||||
|
|
||||||
doFirst {
|
doFirst {
|
||||||
file(tlb).parentFile.mkdirs()
|
file(tlb).parentFile.mkdirs()
|
||||||
def midlCmd = "midl /tlb ${tlb} ${idl}"
|
def midlCmd = "midl /tlb \"${tlb}\" \"${idl}\""
|
||||||
println "Executing: " + midlCmd
|
println "Executing: " + midlCmd
|
||||||
|
|
||||||
tmpBatch.withWriter { out ->
|
tmpBatch.withWriter { out ->
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue