Skip to content

Commit

Permalink
skip cleaning up
Browse files Browse the repository at this point in the history
  • Loading branch information
MoChilia committed Sep 3, 2024
1 parent f419bab commit faa56bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,11 @@ export async function main() {
}
finally {
// clean up
const scriptFilePath: string = path.join(TEMP_DIRECTORY, scriptFileName);
await deleteFile(scriptFilePath);
console.log("cleaning up container...");
await executeDockerCommand(["rm", "--force", CONTAINER_NAME], true);
// const scriptFilePath: string = path.join(TEMP_DIRECTORY, scriptFileName);
// await deleteFile(scriptFilePath);
// console.log("cleaning up container...");
// await executeDockerCommand(["rm", "--force", CONTAINER_NAME], true);
console.log("Skip cleaning up container...");
}
};

Expand Down

0 comments on commit faa56bf

Please sign in to comment.