-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from WillAbides/readthis
start README
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# bindown | ||
|
||
**bindown** is a command-line utility to download, verify and install binary files. It is intended to be used in | ||
development and ci environments where it is important to guarantee the same version of the same binary is downloaded | ||
every time. | ||
|
||
## Usage | ||
|
||
``` | ||
Usage: bindown <command> | ||
Flags: | ||
--help Show context-sensitive help. | ||
--configfile="buildtools.json" file with tool definitions | ||
--cellar-dir=STRING directory where downloads will be cached | ||
Commands: | ||
version | ||
download <target-file> | ||
download a bin | ||
config format | ||
formats the config file | ||
config update-checksums <target-file> | ||
name of the binary to update | ||
config validate <bin> | ||
validate that downloads work | ||
Run "bindown <command> --help" for more information on a command. | ||
``` |