unstow 目录导致警告
unstow directory causes warning
当我运行:
stow -D folderName
我得到:
WARNING! unstowing folderName would cause conflicts:
* existing target is neither a link nor a directory: .DS_Store
All operations aborted.
我该如何解决?我找到了 this tip 但我没看懂
也许尝试在 stow
:
之前执行这个命令
find folderName -name ".DS_Store" -depth -exec rm -f {} \;
这将删除 folderName 中的任何 .DS_Store
文件,这似乎是导致问题的原因。
当我运行:
stow -D folderName
我得到:
WARNING! unstowing folderName would cause conflicts:
* existing target is neither a link nor a directory: .DS_Store
All operations aborted.
我该如何解决?我找到了 this tip 但我没看懂
也许尝试在 stow
:
find folderName -name ".DS_Store" -depth -exec rm -f {} \;
这将删除 folderName 中的任何 .DS_Store
文件,这似乎是导致问题的原因。