You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/upm/tool.rb
+17-13
Original file line number
Diff line number
Diff line change
@@ -22,29 +22,32 @@ class Tool
22
22
"install"=>"install a package",
23
23
"remove/uninstall"=>"remove a package",
24
24
"search"=>"search packages",
25
+
"update/sync"=>"retrieve the latest package list or manifest",
26
+
"upgrade"=>"update package list and install updates",
25
27
"search-sources"=>"search package source (for use with 'build' command)",
26
-
"build"=>"build a package from source and install it",
27
28
"list"=>"list installed packages (or search their names if extra arguments are supplied)",
28
-
"selection"=>"list manually installed packages",# this should probably be a `list` option ("upm list --manually-added" or smth (would be nice: rewrite in go and use ipfs' arg parsing library))
29
29
"files"=>"list files in a package",
30
-
"info"=>"show metadata about a package",
31
-
"update/sync"=>"retrieve the latest package list or manifest",
32
-
"upgrade"=>"update package list and install updates",
30
+
"info/show"=>"show metadata about a package",
31
+
"rdeps/depends"=>"reverse dependencies (which packages depend on this package?)",
32
+
"locate"=>"search contents of packages (local or remote)",
33
33
"selfupdate"=>"update the package manager",
34
34
"download"=>"download package list and updates, but don't insatall them",
35
+
"build"=>"build a package from source and install it",
36
+
"selection/manual"=>"list manually installed packages",# this should probably be a `list` option ("upm list --manually-added" or smth (would be nice: rewrite in go and use ipfs' arg parsing library))
35
37
"pin"=>"pinning a package means it won't be automatically upgraded",
36
38
"rollback"=>"revert to an earlier version of a package (including its dependencies)",
37
39
"verify/check"=>"verify the integrity of packages' files on the filesystem",
38
40
"repair"=>"fix corrupted packages",
39
-
"audit/vuln"=>"show known vulnerabilities in installed packages",
41
+
"audit/vulns"=>"show known vulnerabilities in installed packages",
40
42
"log"=>"show history of package installs",
41
43
"packagers"=>"detect installed package managers, and pick which ones upm should wrap",
42
44
"clean"=>"clear out the local package cache",
45
+
"orphans"=>"dependencies which are no longer needed",
43
46
"monitor"=>"ad-hoc package manager for custom installations (like instmon)",
44
47
"keys"=>"keyrings and package authentication",
45
48
"default"=>"configure the action to take when no arguments are passed to 'upm' (defaults to 'os:update')",
46
49
"stats"=>"show statistics about package database(s)",
47
-
"mirrors/sources/channels"=>"manage subscriptions to remote repositories/mirrors/channels",
50
+
"repos/mirrors/sources/channels"=>"manage subscriptions to remote repositories/mirrors/channels",
0 commit comments