summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/setup_jv_cli.iss.template8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/setup_jv_cli.iss.template b/templates/setup_jv_cli.iss.template
index ae1c40f..fddfc92 100644
--- a/templates/setup_jv_cli.iss.template
+++ b/templates/setup_jv_cli.iss.template
@@ -27,14 +27,14 @@ Name: "english"; MessagesFile: "compiler:Default.isl"
[Files]
Source: "..\..\..\.temp\deploy\*"; Excludes: "setup"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
-Source: "inst.ps1"; DestDir: "{app}\scripts\"; Flags: ignoreversion
-Source: "uninst.ps1"; DestDir: "{app}\scripts\"; Flags: ignoreversion
+Source: "post_inst.ps1"; DestDir: "{app}\scripts\"; Flags: ignoreversion
+Source: "post_uninst.ps1"; DestDir: "{app}\scripts\"; Flags: ignoreversion
[Run]
-Filename: "powershell.exe"; Parameters: "-ExecutionPolicy Bypass -File ""{app}\scripts\inst.ps1"""; Flags: runhidden; Description: "Running post-installation script..."; StatusMsg: "Running post-installation script..."; AfterInstall: RunPostInstall
+Filename: "powershell.exe"; Parameters: "-ExecutionPolicy Bypass -File ""{app}\scripts\post_inst.ps1"""; Flags: runhidden; Description: "Running post-installation script..."; StatusMsg: "Running post-installation script..."; AfterInstall: RunPostInstall
[UninstallRun]
-Filename: "powershell.exe"; Parameters: "-ExecutionPolicy Bypass -File ""{app}\scripts\uninst.ps1"""; Flags: runhidden; RunOnceId: "UninstallScript"
+Filename: "powershell.exe"; Parameters: "-ExecutionPolicy Bypass -File ""{app}\scripts\post_uninst.ps1"""; Flags: runhidden; RunOnceId: "UninstallScript"
[Code]
procedure RunPostInstall;