mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-12-03 22:00:48 +01:00
9991822f8c
All checks were successful
CI / Run tests (push) Has been skipped
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
9 lines
206 B
Bash
9 lines
206 B
Bash
# Aliases for bazel
|
|
alias bzb='bazel build'
|
|
alias bzt='bazel test'
|
|
alias bzr='bazel run'
|
|
alias bzq='bazel query'
|
|
|
|
sri-hash() {
|
|
openssl dgst -sha256 -binary $1 | openssl base64 -A | sed 's/^/sha256-/'
|
|
}
|