mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-18 20:48:29 +02:00
Re-enable early exit
This commit is contained in:
parent
f5c5efee57
commit
813a01386d
2 changed files with 2 additions and 2 deletions
2
dist/cache-save/index.js
generated
vendored
2
dist/cache-save/index.js
generated
vendored
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,7 @@ import { CacheState } from "./action";
|
||||||
if (state.cacheEnabled && !state.cacheHit) {
|
if (state.cacheEnabled && !state.cacheHit) {
|
||||||
try {
|
try {
|
||||||
await saveCache([state.bunPath], state.url);
|
await saveCache([state.bunPath], state.url);
|
||||||
//process.exit(0);
|
process.exit(0);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
warning("Failed to save Bun to cache.");
|
warning("Failed to save Bun to cache.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue