Skip to content

Commit 513f2d2

Browse files
committed
add aspnetcore backport commit
add the conflicting commit which fixed it to avoid errors fix copy path Signed-off-by: Sanjam Panda <sanjam.panda@ibm.com>
1 parent d4ac681 commit 513f2d2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dotnet-build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ function build_sdk {
189189
fi
190190
if [ -z ${SKIP_PACKAGE_SDK+x} ] && [ ! -e .skip-package ]; then
191191
mkdir -p "$DOWNLOADDIR/Sdk/$SDK_VERSION"
192-
if git merge-base --is-ancestor 140ff5e HEAD; then
193-
cp "artifacts/packages/Release/NonShipping/dotnet-toolset-internal-$SDK_VERSION-ci.zip" "$DOWNLOADDIR/Sdk/$SDK_VERSION"
192+
if ! git merge-base --is-ancestor 140ff5e HEAD; then
193+
cp "artifacts/packages/Release/NonShipping/dotnet-toolset-internal-$SDK_VERSION"@(-ci|)".zip" "$DOWNLOADDIR/Sdk/$SDK_VERSION"
194194
fi
195195
cp "artifacts/packages/$sdk_conf/Shipping/dotnet-sdk-$SDK_VERSION-linux-$ARCH.tar.gz" "$OUTPUTDIR"
196196
fi

dotnet-prepare

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ function prepare_sdk {
170170
function prepare_aspnetcore {
171171
pushd aspnetcore
172172
# https://github.com/dotnet/aspnetcore/commit/0547a0a2c8341a496ca534661942919a0b154a8f
173-
backport 1368813 "../aspnetcore-patches/0001-Update-baseline-SDK-branding.patch"
173+
backport 1368813 "../aspnetcore-patches/0001-Update-baseline-SDK-branding.patch 0547a0a2c8341a496ca534661942919a0b154a8f"
174174
update_nuget_config
175175
popd
176176
}

0 commit comments

Comments
 (0)