summaryrefslogtreecommitdiff
path: root/deploy.ps1
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-23 03:18:53 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-23 03:18:53 +0800
commit5b5e3b2b9375fea3e47c28c2a4d47ef4fe349cd5 (patch)
tree8ce34729fda126e6a06ca881911e19a2c429441c /deploy.ps1
parent9880a6409e8eed4e1210406603d8aff65fac6a0c (diff)
Rename generated files with leading underscore
- Rename template files to have .template extension - Rename generated source files to start with underscore - Update .gitignore to ignore all files starting with underscore - Update build.rs and deploy.ps1 to reflect new names
Diffstat (limited to 'deploy.ps1')
-rw-r--r--deploy.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy.ps1 b/deploy.ps1
index d627a1a..8a6820f 100644
--- a/deploy.ps1
+++ b/deploy.ps1
@@ -29,7 +29,7 @@ if ($LASTEXITCODE -ne 0) {
# Build succeeded
# Export
if (cargo run --manifest-path tools/build_helper/Cargo.toml --bin exporter) {
- Copy-Item -Path templates\compile_info.rs -Destination src\data\compile_info.rs -Force
+ Copy-Item -Path templates\compile_info.rs.template -Destination src\data\compile_info.rs -Force
ISCC /Q .\setup\windows\setup_jv_cli.iss
}
}