# HG changeset patch # User sam # Date 1714383462 25200 # Node ID c066b9a633683a17cc9c9a8dbed8fc878b8ef431 # Parent 1953a7ba41612e51a59f432abcbf4cdbb68222b4 fix: wrong string interpolation diff -r 1953a7ba4161 -r c066b9a63368 semicongine/build.nim --- a/semicongine/build.nim Mon Apr 29 16:15:20 2024 +0700 +++ b/semicongine/build.nim Mon Apr 29 02:37:42 2024 -0700 @@ -182,4 +182,4 @@ const SIGNTOOL_EXE = "C:/Program Files (x86)/Windows Kits/10/App Certification Kit/signtool.exe" if not SIGNTOOL_EXE.fileExists: raise newException(Exception, &"signtool.exe not found at ({SIGNTOOL_EXE}), please install the Windows SDK") - exec $"{SIGNTOOL_EXE} sign /a /tr http://timestamp.globalsign.com/tsa/r6advanced1 /fd SHA256 /td SHA256 {file}" + exec &"\"{SIGNTOOL_EXE}\" sign /a /tr http://timestamp.globalsign.com/tsa/r6advanced1 /fd SHA256 /td SHA256 {file}"