add echos

This commit is contained in:
Fizban 2020-06-03 00:26:52 +10:00
parent 4fdf899fb4
commit e345907744
1 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,7 @@ set -e
# Useful for CI pipiles which use docker for their build steps # Useful for CI pipiles which use docker for their build steps
# and don't allow that much flexibility to mount volumes # and don't allow that much flexibility to mount volumes
SRCDIR=/$1 SRCDIR=/$1
echo $SRCDIR
WORKDIR=${SRCDIR:-/src} WORKDIR=${SRCDIR:-/src}
# #
@ -29,7 +30,8 @@ if [[ "$PYPI_URL" != "https://pypi.python.org/" ]] || \
echo "Using custom pip.ini: " echo "Using custom pip.ini: "
cat /wine/drive_c/users/root/pip/pip.ini cat /wine/drive_c/users/root/pip/pip.ini
fi fi
ls
echo 'here'
cd $WORKDIR cd $WORKDIR
if [ -f requirements.txt ]; then if [ -f requirements.txt ]; then