Add verbose pip build output

Currently the output is terse and next to useless.
This commit is contained in:
adisbladis 2021-06-28 16:23:09 -05:00
parent 2938150771
commit 123257b607
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -15,7 +15,7 @@ pipBuildPhase() {
mkdir -p dist
echo "Creating a wheel..."
@pythonInterpreter@ -m pip wheel --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist .
@pythonInterpreter@ -m pip wheel --verbose --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist .
echo "Finished creating a wheel..."
runHook postBuild