# HG changeset patch # User sam # Date 1714383462 25200 # Node ID 073ce95ae5c7358e6b015ce5833615f5a0cb111a # Parent 881be26337615b699e3214b06372fc6aa8acfc07 fix: wrong string interpolation diff -r 881be2633761 -r 073ce95ae5c7 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}"