-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(install): Added the ability to specify @ version when installing…
… from url/file location (#5988)
- Loading branch information
1 parent
c9048ad
commit 700a2f4
Showing
3 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,15 @@ | |
# To install an app from a manifest at a URL: | ||
# scoop install https://raw.githubusercontent.com/ScoopInstaller/Main/master/bucket/runat.json | ||
# | ||
# To install a different version of the app from a URL: | ||
# scoop install https://raw.githubusercontent.com/ScoopInstaller/Main/master/bucket/[email protected] | ||
# | ||
# To install an app from a manifest on your computer | ||
# scoop install \path\to\app.json | ||
# | ||
# To install an app from a manifest on your computer | ||
# scoop install \path\to\app.json@version | ||
# | ||
# Options: | ||
# -g, --global Install the app globally | ||
# -i, --independent Don't install dependencies automatically | ||
|