mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 22:23:56 +08:00
9 lines
188 B
Python
Executable File
9 lines
188 B
Python
Executable File
#!/usr/bin/env python3
|
|
import os
|
|
import sys
|
|
from system.loggerd.uploader import UPLOAD_ATTR_NAME
|
|
|
|
for fn in sys.argv[1:]:
|
|
print(f"unmarking {fn}")
|
|
os.removexattr(fn, UPLOAD_ATTR_NAME)
|