changeset 1127:073ce95ae5c7

fix: wrong string interpolation
author sam <sam@basx.dev>
date Mon, 29 Apr 2024 02:37:42 -0700
parents 881be2633761
children ae54dbb08e53 024c459a4770
files semicongine/build.nim
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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}"