Skip to content

Commit 7335e0e

Browse files
committed
Fix relative pathing for build artifact
1 parent f1aa5ea commit 7335e0e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ build-test: .tox
4646
$(PY) -m venv venv
4747
. venv/bin/activate
4848
$(PY) setup.py sdist
49-
pip install dist/juju-${VERSION}.tar.gz
49+
pip install ./dist/juju-${VERSION}.tar.gz
5050
$(PY) -c "from juju.controller import Controller"
51-
rm dist/juju-${VERSION}.tar.gz
51+
rm ./dist/juju-${VERSION}.tar.gz
5252

5353
.PHONY: release
5454
release:

0 commit comments

Comments
 (0)