-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #139
- Loading branch information
Showing
4 changed files
with
22 additions
and
4 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
Installs any packages you specify at the command line | ||
|
||
Running `ahkpm install` without specifying a package name will download all | ||
dependencies specified in ahkpm.json into the `ahkpm-modules` folder. | ||
|
||
Packages may be specified as either `<packageName>@<version>` or as just | ||
`<packageName>`. | ||
|
||
For example, `ahkpm install github.com/user/[email protected]` will download version | ||
1.0.0 of the package into the `ahkpm-modules` folder as well as save the package | ||
name and version to `ahkpm.json` for future use. | ||
|
@@ -8,5 +14,7 @@ You may also use package name shorthands, such as `gh:user/repo`. | |
|
||
For versions you may specify a range such as `1.x.x` or `1.2.x`. | ||
|
||
Running `ahkpm install` without specifying a package name will download all | ||
dependencies specified in ahkpm.json into the `ahkpm-modules` folder. | ||
If you do not specify a version, ahkpm will attempt to find the latest valid | ||
semantic version. If no valid semantic version of the package is available, | ||
it will fall back to `branch:main`. If there is no `main` branch, it will | ||
fall back to `branch:master`. There are no further fallbacks. |
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