parent
915a7c4195
commit
92235612a2
1 changed files with 9 additions and 0 deletions
@ -0,0 +1,9 @@ |
||||
#!/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) |
||||
|
Loading…
Reference in new issue