Skip to content

Commit 85b8f03

Browse files
Temporarily use modified build system to see if it fixes CI issues. Also remove earlier attempted workaround.
1 parent 6f44227 commit 85b8f03

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

‎build.ps1‎

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,12 @@ function DownloadWithRetry([string] $url, [string] $downloadLocation, [int] $ret
2828
}
2929
}
3030

31-
# Avoid issues similar to https://github.com/npm/npm/issues/10826
32-
npm cache clean
33-
3431
cd $PSScriptRoot
3532

3633
$repoFolder=$PSScriptRoot
3734
$env:REPO_FOLDER=$repoFolder
3835

39-
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
36+
$koreBuildZip="https://codeload.github.com/aspnet/KoreBuild/zip/stevesa/npm-in-series"
4037
if ($env:KOREBUILD_ZIP)
4138
{
4239
$koreBuildZip=$env:KOREBUILD_ZIP

‎build.sh‎

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
repoFolder="$(cd"$( dirname "${BASH_SOURCE[0]}")"&&pwd)"
33
cd$repoFolder
44

5-
# Avoid issues similar to https://github.com/npm/npm/issues/10826
6-
npm cache clean
7-
8-
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
5+
koreBuildZip="https://codeload.github.com/aspnet/KoreBuild/zip/stevesa/npm-in-series"
96
if [ !-z$KOREBUILD_ZIP ];then
107
koreBuildZip=$KOREBUILD_ZIP
118
fi

0 commit comments

Comments
(0)