From a0545209c39d6fb16c4b556b592977f28ba56c68 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 13 Feb 2024 20:45:38 +0000 Subject: [PATCH] action: build the action --- dist/restore-only/index.js | 4 ++-- dist/restore/index.js | 4 ++-- dist/save-only/index.js | 4 ++-- dist/save/index.js | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dist/restore-only/index.js b/dist/restore-only/index.js index 8b792155..cb38d7ea 100644 --- a/dist/restore-only/index.js +++ b/dist/restore-only/index.js @@ -62380,12 +62380,12 @@ function getTarArgs(tarPath, compressionMethod, type, archivePath = '') { }); } // Returns commands to run tar and compression program -function getCommands(compressionMethod, type, archivePath = '', tarExtraArgs = []) { +function getCommands(compressionMethod, type, archivePath = '', extraTarArgs = []) { return __awaiter(this, void 0, void 0, function* () { let args; const tarPath = yield getTarPath(); const tarArgs = yield getTarArgs(tarPath, compressionMethod, type, archivePath); - tarArgs.push(...tarExtraArgs); + tarArgs.push(...extraTarArgs); const compressionArgs = type !== 'create' ? yield getDecompressionProgram(tarPath, compressionMethod, archivePath) : yield getCompressionProgram(tarPath, compressionMethod); diff --git a/dist/restore/index.js b/dist/restore/index.js index 48df98c2..3bbb4356 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -62380,12 +62380,12 @@ function getTarArgs(tarPath, compressionMethod, type, archivePath = '') { }); } // Returns commands to run tar and compression program -function getCommands(compressionMethod, type, archivePath = '', tarExtraArgs = []) { +function getCommands(compressionMethod, type, archivePath = '', extraTarArgs = []) { return __awaiter(this, void 0, void 0, function* () { let args; const tarPath = yield getTarPath(); const tarArgs = yield getTarArgs(tarPath, compressionMethod, type, archivePath); - tarArgs.push(...tarExtraArgs); + tarArgs.push(...extraTarArgs); const compressionArgs = type !== 'create' ? yield getDecompressionProgram(tarPath, compressionMethod, archivePath) : yield getCompressionProgram(tarPath, compressionMethod); diff --git a/dist/save-only/index.js b/dist/save-only/index.js index e47169dc..67780526 100644 --- a/dist/save-only/index.js +++ b/dist/save-only/index.js @@ -62380,12 +62380,12 @@ function getTarArgs(tarPath, compressionMethod, type, archivePath = '') { }); } // Returns commands to run tar and compression program -function getCommands(compressionMethod, type, archivePath = '', tarExtraArgs = []) { +function getCommands(compressionMethod, type, archivePath = '', extraTarArgs = []) { return __awaiter(this, void 0, void 0, function* () { let args; const tarPath = yield getTarPath(); const tarArgs = yield getTarArgs(tarPath, compressionMethod, type, archivePath); - tarArgs.push(...tarExtraArgs); + tarArgs.push(...extraTarArgs); const compressionArgs = type !== 'create' ? yield getDecompressionProgram(tarPath, compressionMethod, archivePath) : yield getCompressionProgram(tarPath, compressionMethod); diff --git a/dist/save/index.js b/dist/save/index.js index 9120b86f..f55819d2 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -62380,12 +62380,12 @@ function getTarArgs(tarPath, compressionMethod, type, archivePath = '') { }); } // Returns commands to run tar and compression program -function getCommands(compressionMethod, type, archivePath = '', tarExtraArgs = []) { +function getCommands(compressionMethod, type, archivePath = '', extraTarArgs = []) { return __awaiter(this, void 0, void 0, function* () { let args; const tarPath = yield getTarPath(); const tarArgs = yield getTarArgs(tarPath, compressionMethod, type, archivePath); - tarArgs.push(...tarExtraArgs); + tarArgs.push(...extraTarArgs); const compressionArgs = type !== 'create' ? yield getDecompressionProgram(tarPath, compressionMethod, archivePath) : yield getCompressionProgram(tarPath, compressionMethod);