This commit is contained in:
ed 2024-02-15 00:00:41 +00:00
parent 879e83e24f
commit a0da0122b9
7 changed files with 37 additions and 13 deletions

View file

@ -77,13 +77,14 @@ function have() {
}
function load_env() {
. buildenv/bin/activate
have setuptools
have wheel
have build
have twine
have jinja2
have strip_hints
. buildenv/bin/activate || return 1
have setuptools &&
have wheel &&
have build &&
have twine &&
have jinja2 &&
have strip_hints &&
return 0 || return 1
}
load_env || {