mirror of
https://github.com/louislam/dockge.git
synced 2024-11-21 15:53:34 +01:00
14 lines
240 B
JavaScript
14 lines
240 B
JavaScript
/*
|
|
* 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) {
|
|
|
|
}
|