summaryrefslogtreecommitdiff
path: root/asp.in
diff options
context:
space:
mode:
Diffstat (limited to 'asp.in')
-rw-r--r--asp.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/asp.in b/asp.in
index 5393823..1c4902e 100644
--- a/asp.in
+++ b/asp.in
@@ -63,6 +63,7 @@ Commands:
log NAME Show revision history
shortlog NAME Show revision history in short form
update [NAME...] Update packages (update all tracked if none specified)
+ untrack NAME... Remove a package from the local repository
EOF
}
@@ -156,6 +157,14 @@ gc() {
git gc
}
+untrack() {
+ local pkgname=$1 remote
+
+ package_init -n "$pkgname" remote || return 1
+
+ remote_untrack "$remote" "$pkgname"
+}
+
disk_usage() {
local usage
read usage _ < <(du -sh "$ASPROOT/objects")
@@ -235,6 +244,9 @@ case $action in
gc)
gc
;;
+ untrack)
+ map untrack "$@"
+ ;;
help)
usage
exit 0