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:
parent
d5368d9491
commit
969964aade
1 changed files with 12 additions and 0 deletions
|
@ -121,6 +121,12 @@ category = "[project]"
|
||||||
command = "cargo"
|
command = "cargo"
|
||||||
args = [ "make", "--list-all-steps" ]
|
args = [ "make", "--list-all-steps" ]
|
||||||
|
|
||||||
|
[tasks.install]
|
||||||
|
description = "Install project binary (to \"$HOME/.cargo/bin\")"
|
||||||
|
category = "[project]"
|
||||||
|
command = "cargo"
|
||||||
|
args = ["install", "--path", "."]
|
||||||
|
|
||||||
[tasks.lint]
|
[tasks.lint]
|
||||||
description = "Lint report"
|
description = "Lint report"
|
||||||
category = "[project]"
|
category = "[project]"
|
||||||
|
@ -152,6 +158,12 @@ dependencies = [
|
||||||
"core::post-test",
|
"core::post-test",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[tasks.uninstall]
|
||||||
|
description = "Remove project binary (from \"$HOME/.cargo/bin\")"
|
||||||
|
category = "[project]"
|
||||||
|
command = "cargo"
|
||||||
|
args = ["uninstall"]
|
||||||
|
|
||||||
[tasks.util]
|
[tasks.util]
|
||||||
alias = "utils"
|
alias = "utils"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue