We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8e93dc commit 194396fCopy full SHA for 194396f
dotnet-build
@@ -196,7 +196,9 @@ function build_sdk {
196
fi
197
if [ -z ${SKIP_PACKAGE_SDK+x} ] && [ ! -e .skip-package ]; then
198
mkdir -p "$DOWNLOADDIR/Sdk/$SDK_VERSION"
199
- cp "artifacts/packages/Release/NonShipping/dotnet-toolset-internal-$SDK_VERSION.zip" "$DOWNLOADDIR/Sdk/$SDK_VERSION"
+ 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
202
cp "artifacts/packages/$sdk_conf/Shipping/dotnet-sdk-$SDK_VERSION-linux-$ARCH.tar.gz" "$OUTPUTDIR"
203
204
popd
0 commit comments