warpd icon indicating copy to clipboard operation
warpd copied to clipboard

linux: avoid spurious warnings from make

Open aspiers opened this issue 1 year ago • 0 comments

If the artifacts to clean don't exist, rm(1) will emit a warning which may worry the user. But there is nothing to worry about, so silence the warning with the -f flag.

Similarly, if the bin/ directory already exists, mkdir(1) will emit an unnecessary warning, so add the -p flag.

aspiers avatar Jul 02 '23 14:07 aspiers