Files
chia-blockchain/activated.sh
T
Kyle AltendorfandGitHub 740282a636 add poetry check ... well, check (#18357)
* add poetry check ...  well, check

* add poetry check to pre-commit

* touchup

* Update activated.sh

* Update activated.ps1
2024-07-29 12:30:05 -07:00

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"
"$@"