我不知道这是什么。我正在尝试存档我的应用程序。我知道有很多答案,但我无法理解任何答案。所以请有人知道如何解决这个可以告诉我。
SetOwnerAndGroup shivamrishi:staff /Users/shriyarishi/Library/Developer/Xcode/DerivedData/QuoteU-cqodwskdmizaqjgavubtjxrtedhv/Build/Intermediates/ArchiveIntermediates/QuoteU/InstallationBuildProductsLocation/Applications/QuoteU.app
cd "/Users/shriyarishi/Desktop/QuoteU "
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/usr/sbin/chown -RH shivamrishi:staff /Users/shriyarishi/Library/Developer/Xcode/DerivedData/QuoteU-cqodwskdmizaqjgavubtjxrtedhv/Build/Intermediates/ArchiveIntermediates/QuoteU/InstallationBuildProductsLocation/Applications/QuoteU.app
最后的代码
chown: /Users/shriyarishi/Library/Developer/Xcode/DerivedData/QuoteU-cqodwskdmizaqjgavubtjxrtedhv/Build/Intermediates/ArchiveIntermediates/QuoteU/InstallationBuildProductsLocation/Applications/QuoteU.app: Operation not permitted
Command /usr/sbin/chown failed with exit code 1
图像https://drive.google.com/file/d/0B2z_d4wEKPEFVWsxV0xUczhFck0/view?usp=sharing
只有超级用户才能chown文件。来自chown(8)
手册页:
出于明显的安全原因,文件的所有权只能由超级用户更改。
如果要更改文件所有权,则应使用sudo
。 sudo
将需要您的密码,并且您在计算机上的admin
组中(即您必须被标记为允许管理计算机)。
sudo /usr/sbin/chown -RH shivamrishi:staff \
/Users/shriyarishi/Library/Developer/Xcode/DerivedData/QuoteU-cqodwskdmizaqjgavubtjxrtedhv/Build/Intermediates/ArchiveIntermediates/QuoteU/InstallationBuildProductsLocation/Applications/QuoteU.app
在我的配置文件过期后,我发生了这种情况,我续订了它。我在一些pods代码中出现此错误,因此我使用了删除了pod
pod deintegrate
请检查this,从您的项目中完全删除pods的绝佳方式。
然后pod install
。
它对我有用!