mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-02 10:05:46 -05:00
* move shfmt execution from the super linter to pre-commit * actually apply...
13 lines
160 B
Bash
Executable File
13 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -o errexit
|
|
|
|
SCRIPT_DIRECTORY=$(
|
|
cd -- "$(dirname -- "$0")"
|
|
pwd
|
|
)
|
|
# shellcheck disable=SC1091
|
|
. "${SCRIPT_DIRECTORY}/venv/bin/activate"
|
|
|
|
"$@"
|