mirror of
https://github.com/ekzhang/bore.git
synced 2024-12-22 17:55:22 +07:00
a2b8382681
* Add GitHub CI/CD * Add instructions for installing bin from GitHub releases * Will work after a new version is released * Add windows jobs for CI/CD * Only run CI on stable rust * Use `cargo fmt` instead of `rustfmt`, undo change * Delete install.sh * Update README.md Co-authored-by: Eric Zhang <ekzhang1@gmail.com>
7 lines
110 B
Bash
7 lines
110 B
Bash
required_arg() {
|
|
if [ -z "$1" ]; then
|
|
echo "Required argument $2 missing"
|
|
exit 1
|
|
fi
|
|
}
|