mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-02 02:24:20 -05:00
* add poetry check ... well, check * add poetry check to pre-commit * touchup * Update activated.sh * Update activated.ps1
17 lines
206 B
Bash
Executable File
17 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -o errexit
|
|
|
|
SCRIPT_DIRECTORY=$(
|
|
cd -- "$(dirname -- "$0")"
|
|
pwd
|
|
)
|
|
|
|
ENV_DIRECTORY="$1"
|
|
shift
|
|
|
|
# shellcheck disable=SC1090,SC1091
|
|
. "${SCRIPT_DIRECTORY}/${ENV_DIRECTORY}/bin/activate"
|
|
|
|
"$@"
|