Skip to content

Commit 3dcb51e

Browse files
authored
Fixed missing defaultVersion.bookworm for Node (#2229)
* Fixed missing defaultVersion.bookworm for node * Updated comment
1 parent 5ed3038 commit 3dcb51e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vsts/scripts/publishSdksFromStagingToProdStorageAccount.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,15 @@ function copyPlatformBlobsToProdForDebianFlavor() {
101101
fi
102102

103103
# Function to copy platform blobs to production for a specific Debian flavor
104-
# Dotnet is currently the only platform supporting bookworm.
104+
# Dotnet and nodejs are currently the only two platform supporting bookworm.
105105
# Allowed combinations:
106106
# - platformName=dotnet and debianFlavor=bookworm
107+
# - platformName=nodejs and debianFlavor=bookworm
107108
# Not allowed combinations:
108109
# - platformName=python and debianFlavor=bookworm
109-
# - platformName=nodejs and debianFlavor=bookworm
110110
# - platformName=java and debianFlavor=bookworm
111-
# - Any platformName other than dotnet and debianFlavor=bookworm
112-
if [ "$platformName" != "dotnet" ] && [ "$debianFlavor" == "bookworm" ]; then
111+
# - Any platformName other than dotnet and node js with debianFlavor=bookworm
112+
if [ "$platformName" != "dotnet" ] && [ "$platformName" != "nodejs" ] && [ "$debianFlavor" == "bookworm" ]; then
113113
# Do not copy blobs
114114
echo "Copying blobs for platformName=$platformName and debianFlavor=$debianFlavor is not supported yet."
115115
else

0 commit comments

Comments
 (0)