use mv, 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
, 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.Originally posted by @metropol in https://github.com/argmaxinc/WhisperKit/discussions/47