Skip to content

Commit 69ab028

Browse files
authored
Log TMPDIR and PIP_CACHE_DIR in install script
Add debug output for TMPDIR and PIP_CACHE_DIR
1 parent 1a2556a commit 69ab028

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bin/install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
set -euxo pipefail
1919
cd "$(dirname "$0")/.."
2020

21+
22+
echo "TMPDIR=${TMPDIR}"
23+
echo "PIP_CACHE_DIR=${PIP_CACHE_DIR}"
24+
2125
echo 'Installing requirements...'
2226
pip install --no-deps --require-hashes --requirement requirements.txt
2327
echo

0 commit comments

Comments
 (0)