Skip to content

Commit 64d3606

Browse files
dennisamelingdscho
authored andcommitted
minimal: avoid caching it
As downloading the minimal SDK is now so blazing fast, we can avoid caching it. This saves half a minute that we would otherwise spend on caching the artifact alone. Signed-off-by: Dennis Ameling <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 3d4ea07 commit 64d3606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async function run(): Promise<void> {
5959
useCache = true
6060
break
6161
case 'auto':
62-
useCache = flavor !== 'full'
62+
useCache = !['full', 'minimal'].includes(flavor)
6363
break
6464
default:
6565
useCache = false

0 commit comments

Comments
 (0)