Skip to content

Commit

Permalink
fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
KissPeter committed Jan 17, 2021
1 parent 7d2a45c commit d2288c5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ clean-build-folder:
rm -fr ../dist/ ../build/ ../*.egg-info

build-pip-package: clean-build-folder
DIR=`mktemp -d`
echo $DIR
DIR=/tmp/test
rm -rf $DIR
mkdir -p $DIR
mv ../test $DIR/ # not the best, but setup exclude doesn't work
find ../ -name "__pycache __" -exec rm -rf {} \;
cd .. && python3 setup.py sdist bdist_wheel
Expand Down

0 comments on commit d2288c5

Please sign in to comment.