From 1df2bd2365aa4eedd89f9f4c7fa323a5e730a574 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 6 Dec 2024 11:45:48 -0500 Subject: [PATCH] Display debug in selected options --- publish-nix.sh | 1 + publish-win.ps1 | 1 + 2 files changed, 2 insertions(+) diff --git a/publish-nix.sh b/publish-nix.sh index 2e67066..b0d098b 100755 --- a/publish-nix.sh +++ b/publish-nix.sh @@ -43,6 +43,7 @@ COMMIT=$(git log --pretty=%H -1) # Output the selected options echo "Selected Options:" echo " Use all frameworks (-u) $USE_ALL" +echo " Include debug builds (-d) $INCLUDE_DEBUG" echo " No build (-b) $NO_BUILD" echo " No archive (-a) $NO_ARCHIVE" echo " " diff --git a/publish-win.ps1 b/publish-win.ps1 index 3601ca7..bbc2bca 100644 --- a/publish-win.ps1 +++ b/publish-win.ps1 @@ -34,6 +34,7 @@ $COMMIT = git log --pretty=format:"%H" -1 # Output the selected options Write-Host "Selected Options:" Write-Host " Use all frameworks (-UseAll) $USE_ALL" +Write-Host " Include debug builds (-IncludeDebug) $INCLUDE_DEBUG" Write-Host " No build (-NoBuild) $NO_BUILD" Write-Host " No archive (-NoArchive) $NO_ARCHIVE" Write-Host " "