Xcode 9.1 (9B55) не удалось экспортировать с "Не удалось удалить расширенные атрибуты"
Xcode 9.1 (9B55) не удалось экспортировать с ошибкой Stripping extended attributes failed
и ниже сообщение об ошибке:
/usr/bin/xattr -crs /var/folders/mm/h01jykrs7gv9w7jjb0yt609w0000gp/T/XcodeDistPipeline.FZT/Root/Payload/GitSmartHome.app" exited with a non-zero status. The /usr/bin/xattr tool may be damaged.
В IDEDistributionPipeline.log, можете увидеть ниже ошибку:
2017-11-01 14:02:24 +0000
2017-11-01 14:02:24 +0000 Running /usr/bin/xattr '-crs' '/var/folders/mm/h01jykrs7gv9w7jjb0yt609w0000gp/T/XcodeDistPipeline.U1x/Root/Payload/GitSmartHome.app'
2017-11-01 14:02:24 +0000 option -c not recognized
usage: xattr [-lz] file [file ...]
xattr -p [-lz] attr_name file [file ...]
xattr -w [-z] attr_name attr_value file [file ...]
xattr -d attr_name file [file ...]
The first form lists the names of all xattrs on the given file(s).
The second form (-p) prints the value of the xattr attr_name.
The third form (-w) sets the value of the xattr attr_name to attr_value.
The fourth form (-d) deletes the xattr attr_name.
options:
-h: print this help
-l: print long format (attr_name: attr_value)
-z: compress or decompress (if compressed) attribute value in zip format
2017-11-01 14:02:24 +0000 2017-11-01 14:02:24 +0000
2017-11-01 14:02:24 +0000 /usr/bin/xattr exited with 64
Я искал и много пробовал из Интернета, прежде чем увидеть эту ошибку, вопрос в том, как исправить или переустановить xattr или python оригинальной MacOS? Переустановка High Sierra это исправит?
Ваш совет приветствуется.
2 ответа
У меня есть решение, которое может помочь вам. Я запускаю cmd "/usr/bin/xattr -crs ***" в терминале и получаю:
python version 2.7.14 can't run /usr/bin/xattr. Try the alternative(s):
/usr/bin/xattr-2.7 (uses python 2.7)
тогда я бегу cmd
$ sudo mv xattr xattr_bak
$ sudo mv xattr-2.7 xattr
это работало в моем xcode9.1.
2017-11-27 05:51