File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1077,7 +1077,7 @@ function getVersion(app) {
1077
1077
// Use zstandard if possible to maximize cache performance
1078
1078
function getCompressionMethod ( ) {
1079
1079
return __awaiter ( this , void 0 , void 0 , function * ( ) {
1080
- if ( process . platform === 'win32' && ! isGnuTarInstalled ( ) ) {
1080
+ if ( process . platform === 'win32' && ! ( yield isGnuTarInstalled ( ) ) ) {
1081
1081
// Disable zstd due to bug https://github.com/actions/cache/issues/301
1082
1082
return constants_1 . CompressionMethod . Gzip ;
1083
1083
}
Original file line number Diff line number Diff line change @@ -1077,7 +1077,7 @@ function getVersion(app) {
1077
1077
// Use zstandard if possible to maximize cache performance
1078
1078
function getCompressionMethod ( ) {
1079
1079
return __awaiter ( this , void 0 , void 0 , function * ( ) {
1080
- if ( process . platform === 'win32' && ! isGnuTarInstalled ( ) ) {
1080
+ if ( process . platform === 'win32' && ! ( yield isGnuTarInstalled ( ) ) ) {
1081
1081
// Disable zstd due to bug https://github.com/actions/cache/issues/301
1082
1082
return constants_1 . CompressionMethod . Gzip ;
1083
1083
}
You can’t perform that action at this time.
0 commit comments