Skip to content

Commit 194396f

Browse files
committed
Removed dotnet-toolset-internal.zip
Recently the dotnet-toolset-internal.zip was removed in sdk dotnet/sdk#47059 Signed-off-by: Sanjam Panda <[email protected]>
1 parent d8e93dc commit 194396f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dotnet-build

+3-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,9 @@ function build_sdk {
196196
fi
197197
if [ -z ${SKIP_PACKAGE_SDK+x} ] && [ ! -e .skip-package ]; then
198198
mkdir -p "$DOWNLOADDIR/Sdk/$SDK_VERSION"
199-
cp "artifacts/packages/Release/NonShipping/dotnet-toolset-internal-$SDK_VERSION.zip" "$DOWNLOADDIR/Sdk/$SDK_VERSION"
199+
if ! git merge-base --is-ancestor 140ff5e HEAD; then
200+
cp "artifacts/packages/Release/NonShipping/dotnet-toolset-internal-$SDK_VERSION.zip" "$DOWNLOADDIR/Sdk/$SDK_VERSION"
201+
fi
200202
cp "artifacts/packages/$sdk_conf/Shipping/dotnet-sdk-$SDK_VERSION-linux-$ARCH.tar.gz" "$OUTPUTDIR"
201203
fi
202204
popd

0 commit comments

Comments
 (0)