Skip to content

Commit 6f44227

Browse files
Attempt to fix CI build issues
1 parent 3760d37 commit 6f44227

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

build.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ 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+
3134
cd $PSScriptRoot
3235

3336
$repoFolder = $PSScriptRoot

build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
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+
58
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
69
if [ ! -z $KOREBUILD_ZIP ]; then
710
koreBuildZip=$KOREBUILD_ZIP

0 commit comments

Comments
 (0)