1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

maint/build ~ add cargo make install/uninstall targets

This commit is contained in:
Roy Ivy III 2020-04-29 01:06:04 -05:00
parent d5368d9491
commit 969964aade

View file

@ -121,6 +121,12 @@ category = "[project]"
command = "cargo"
args = [ "make", "--list-all-steps" ]
[tasks.install]
description = "Install project binary (to \"$HOME/.cargo/bin\")"
category = "[project]"
command = "cargo"
args = ["install", "--path", "."]
[tasks.lint]
description = "Lint report"
category = "[project]"
@ -152,6 +158,12 @@ dependencies = [
"core::post-test",
]
[tasks.uninstall]
description = "Remove project binary (from \"$HOME/.cargo/bin\")"
category = "[project]"
command = "cargo"
args = ["uninstall"]
[tasks.util]
alias = "utils"