mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-03-04 03:43:55 +08:00
9 lines
217 B
Python
9 lines
217 B
Python
|
|
#!/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)
|