Skip to content

Commit

Permalink
action: build the action
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 13, 2024
1 parent 0712ee6 commit a054520
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dist/restore-only/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions dist/save-only/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions dist/save/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a054520

Please sign in to comment.