We can now build the CLI in a cross platform way (linux/mac/windows) all from the Makefile with relocatable VENV, DIST, and TOX directories. We can also optionally build in a docker container on platforms where docker is available.
15 lines
354 B
Bash
Executable File
15 lines
354 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CURRDIR=$(dirname "${0}")
|
|
source ${CURRDIR}/common.sh
|
|
|
|
rm -rf ${BUILDDIR}/${VENV} \
|
|
${BUILDDIR}/${VENV_DOCKER} \
|
|
${BUILDDIR}/${TOX} \
|
|
${BUILDDIR}/${TOX_DOCKER} \
|
|
${BASEDIR}/build \
|
|
${BASEDIR}/*.egg-info \
|
|
${BASEDIR}/.coverage \
|
|
${BASEDIR}/.cache
|
|
echo "Deleted virtualenv and test artifacts."
|