Skip to content

Commit bd7cf23

Browse files
committed
Actually run it..PEBKAC.
1 parent da4f09b commit bd7cf23

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,7 @@ export async function listActions(actionPath: string): Promise<Map<string, Actio
307307
export async function createArchive(archivePath: string, sourceDir: string): Promise<void> {
308308
try {
309309
const command = `tar -P --zstd -cf ${archivePath} ${sourceDir}`;
310+
const {stdout, stderr} = await execAsync(command);
310311
console.log(`About to run command: ${command}`);
311312
} catch (error) {
312313
console.error('Error creating archive:', error);

0 commit comments

Comments
 (0)