forked from Deuxfleurs/mknet
10 lines
217 B
Python
Executable file
10 lines
217 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import os
|
|
from fragments import garage, shared
|
|
|
|
garage.destroy()
|
|
if len(shared.storage_path) > 8 and shared.id() == 1:
|
|
shared.exec(f"rm -r {shared.storage_path}")
|
|
shared.log("clean done")
|
|
|