devclean-cli 0.5.0

Audit and safely remove rebuildable development artifacts
Documentation
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -eu

if command -v devclean >/dev/null 2>&1; then
  exec devclean "$@"
fi

echo "devclean is not installed; install it with: cargo install devclean-cli --locked" >&2
exit 127