summaryrefslogtreecommitdiff
path: root/scripts/dev/deploy.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/dev/deploy.ps1')
-rw-r--r--scripts/dev/deploy.ps14
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/dev/deploy.ps1 b/scripts/dev/deploy.ps1
index beaf6a8..5332f1d 100644
--- a/scripts/dev/deploy.ps1
+++ b/scripts/dev/deploy.ps1
@@ -79,6 +79,10 @@ if ($LASTEXITCODE -ne 0) {
Write-Host "Deploying Command Line `".\.cargo\config.toml`""
if (cargo run --manifest-path tools/build_helper/Cargo.toml --quiet --bin exporter release > $null 2>&1) {
Copy-Item -Path templates\compile_info.rs.template -Destination src\data\compile_info.rs -Force
+ # After export, if jvn program exists, run jvn -v --no-banner -c
+ if (Get-Command jvn -ErrorAction SilentlyContinue) {
+ jvn -v --no-banner -c
+ }
Write-Host "Packing Installer `".\setup\windows\setup_jv_cli.iss`""
ISCC /Q .\scripts\setup\windows\setup_jv_cli.iss
}