Replies: 1 comment 1 reply
-
Good callout, we're using trash here to avoid any permanent data loss, since this function is generally a last resort when xcode is having major swift package management issues. I'll create an issue to add |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
trash
, used in the following make rule, is not part of a default macOS setup.I see three options to address this:
rm
instead, and delete immediatelymv
, and move the files to the user's trash in~/.Trash
(only works properly if the files are in the local disk; for external hard drives trashes are at/Volumes/NAME_OF_EXTERNAL/.Trashes/USER_ID/
, and to handle these cases probably better go with option 3)trash
using Homebrew in thesetup
rule.Beta Was this translation helpful? Give feedback.
All reactions