File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,9 @@ import * as utils from "./utils/actionUtils";
1414// throw an uncaught exception. Instead of failing this action, just warn.
1515process . on ( "uncaughtException" , e => utils . logWarning ( e . message ) ) ;
1616
17- export async function saveImpl ( stateProvider : IStateProvider ) : Promise < number | void > {
17+ export async function saveImpl (
18+ stateProvider : IStateProvider
19+ ) : Promise < number | void > {
1820 let cacheId = - 1 ;
1921 try {
2022 if ( ! utils . isCacheFeatureAvailable ( ) ) {
@@ -76,7 +78,9 @@ export async function saveImpl(stateProvider: IStateProvider): Promise<number |
7678 return cacheId ;
7779}
7880
79- export async function saveOnlyRun ( earlyExit ?: boolean | undefined ) : Promise < void > {
81+ export async function saveOnlyRun (
82+ earlyExit ?: boolean | undefined
83+ ) : Promise < void > {
8084 try {
8185 const cacheId = await saveImpl ( new NullStateProvider ( ) ) ;
8286 if ( cacheId === - 1 ) {
@@ -118,4 +122,3 @@ export async function saveRun(earlyExit?: boolean | undefined): Promise<void> {
118122 process . exit ( 0 ) ;
119123 }
120124}
121-
Original file line number Diff line number Diff line change 11import { saveOnlyRun } from "./saveImpl" ;
22
3- saveOnlyRun ( true ) ;
3+ saveOnlyRun ( true ) ;
You can’t perform that action at this time.
0 commit comments