@@ -62,7 +62,7 @@ deno 1.35.3
6262` pkgx foo ` runs the latest “foo” that ** is installed** .
6363
6464If you want to ensure the latest version of “foo” is installed, use
65- ` pkgx mash pkgx/ upgrade foo ` .
65+ ` pkgx mash upgrade foo ` .
6666
6767## Adding Additional Packages to the Execution Environment
6868
@@ -158,10 +158,10 @@ package already installed to their system. For these cases we provide an
158158` ensure` script:
159159
160160` ` ` sh
161- $ pkgx mash pkgx/ ensure git --version
161+ $ pkgx mash ensure git --version
162162# ^^ runs system `git` if installed, otherwise installs the `pkgx` pkg
163163
164- $ eval " $( pkgx mash pkgx/ ensure +git) "
164+ $ eval " $( pkgx mash ensure +git) "
165165# ^^ adds pkgx git to the environment *unless* it is installed to the system
166166` ` `
167167
@@ -196,7 +196,7 @@ Longer term we will make a tool `pkgq` to help with these operations.
196196you have (any) newer versions installed use this command:
197197
198198` ` ` sh
199- $ pkgx mash pkgx/ upgrade
199+ $ pkgx mash upgrade
200200updating: /Users/mxcl/.pkgx/python.org/v3.11.11
201201# snip…
202202` ` `
@@ -206,7 +206,7 @@ updating: /Users/mxcl/.pkgx/python.org/v3.11.11
206206The ` pkgx` download cache can get large over time. To prune older versions:
207207
208208` ` ` sh
209- $ pkgx mash pkgx/ prune
209+ $ pkgx mash prune
210210pruning: ~ /.pkgx/deno.land/v1.39.4
211211pruning: ~ /.pkgx/deno.land/v1.46.3
212212# snip…
@@ -220,7 +220,7 @@ reinstall them next time you need them.
220220ie. what versions _could be_ run by ` pkgx` :
221221
222222` ` ` sh
223- $ pkgx mash pkgx/ inventory git
223+ $ pkgx mash inventory git
2242242.38.1
2252252.39.0
226226# snip…
@@ -229,7 +229,7 @@ $ pkgx mash pkgx/inventory git
229229# ## Listing What is Downloaded
230230
231231` ` ` sh
232- $ mash pkgx/ ls
232+ $ pkgx mash ls
233233
234234 Parent Directory │Version
235235 ────────────────────────────────┼──────────
0 commit comments