vPOD: gitignore its dist like the console/launcher packages

The console (Console\dist) and launcher (Launcher\dist) packages are build
artifacts rebuilt by their build scripts and gitignored per-project; vPOD's
package was inconsistently committed. Give vPOD its own .gitignore (/dist/) so
its pack.ps1 output is rebuilt on demand the same way, and drop the tracked
zip. Deployment is unaffected: the Apps.xml product still lists vPOD in Install
Product, and the operator selects the pack.ps1-built zip at install time.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Cyd
2026-07-08 09:58:59 -05:00
co-authored by Claude Fable 5
parent 3fd637c58a
commit aff8bbf6e5
3 changed files with 7 additions and 4 deletions
-4
View File
@@ -29,7 +29,3 @@ __pycache__/
/410console/410consoleArchive.sit
/410console/4_10-console-extracted/
/410console/.finf/
# vPOD: the packed dist zip is tracked (deployable via Install Product), but the
# intermediate stage folder pack.ps1 lays out before zipping is not.
/Console/vPOD/dist/vPOD/
+7
View File
@@ -0,0 +1,7 @@
# Build output
[Bb]in/
[Oo]bj/
# Packaged install output (pack.ps1) — rebuilt on demand, like the console and
# launcher packages; the operator selects the zip at Install Product time.
/dist/
BIN
View File
Binary file not shown.