mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-20 19:33:54 +08:00
10 lines
218 B
Python
Executable File
10 lines
218 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
from common.xattr import removexattr
|
|
from selfdrive.loggerd.uploader import UPLOAD_ATTR_NAME
|
|
|
|
for fn in sys.argv[1:]:
|
|
print("unmarking %s" % fn)
|
|
removexattr(fn, UPLOAD_ATTR_NAME)
|
|
|