8000 Fix productbuild switch in bootstrap eng/common layout by ViktorHofer · Pull Request #571 · dotnet/dotnet · GitHub
[go: up one dir, main page]

Skip to content

Fix productbuild switch in bootstrap eng/common layout #571

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix productbuild switch in bootstrap eng/common layout
Fixes dotnet/source-build#5191

This originally got fixed in dotnet/arcade@d7540e5 and is already part of the VMR non-bootstrap eng/common layout.

But until we re-bootstrap to a newer Arcade that brings the updated eng/common files with the fix, manually backport this to the bootstrap layout.
  • Loading branch information
ViktorHofer authored May 15, 2025
commit 7fbf9db7cdbca6beeccb2b8c834ace50677e4c64
2 changes: 1 addition & 1 deletion eng/common/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ while [[ $# > 0 ]]; do
restore=true
pack=true
;;
-productBuild|-pb)
-productbuild|-pb)
build=true
product_build=true
restore=true
Expand Down
0