-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trust check & installation improvements (#38)
* Split trust prompting from trust check * Split trust check from install when installing multiple tools * Implement --skip-untrusted flag for `aftman install` * Also let installation install all trusted tools before bailing * Update README
- Loading branch information
1 parent
f69ee9f
commit 652c4df
Showing
6 changed files
with
60 additions
and
18 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -123,13 +123,15 @@ aftman add rojo-rbx/[email protected] rojo6 | |
Usage: | ||
|
||
```bash | ||
aftman install [--no-trust-check] | ||
aftman install [--no-trust-check] [--skip-untrusted] | ||
``` | ||
|
||
Install all tools listed in `aftman.toml` files based on your current directory. | ||
|
||
If `--no-trust-check` is given, all tools will be installed, regardless of whether they are known. This should generally only be used in CI environments. To trust a specific tool before running `aftman install`, use `aftman trust <tool>` instead. | ||
|
||
If `--skip-untrusted` is given, only already trusted tools will be installed, others will be skipped and not emit any errors. | ||
|
||
### `aftman self-install` | ||
Usage: | ||
|
||
|
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