Remove the tsx workaround as it had been fixed in upstream

This commit is contained in:
Louis Lam
2024-12-26 16:22:08 +08:00
parent 01906205f0
commit 1372bd2ce1
2 changed files with 1 additions and 14 deletions

View File

@@ -1,13 +0,0 @@
/*
* This script is used to clean up the tmp directory.
* A workaround for https://github.com/louislam/dockge/issues/353
*/
import * as fs from "fs";
try {
fs.rmSync("/tmp/tsx-0", {
recursive: true,
});
} catch (e) {
}