Skip to content

Commit 5c11406

Browse files
committed
build(jenkins): use correct paths
1 parent a97580c commit 5c11406

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ VOLUME ["/home/user/version-query"]
5858
ENV EXAMPLE_PROJECTS_PATH="/home/user"
5959

6060
RUN set -Eeuxo pipefail && \
61-
git clone https://github.com/PyCQA/pycodestyle ../pycodestyle && \
62-
cd ../pycodestyle && \
61+
git clone https://github.com/PyCQA/pycodestyle pycodestyle && \
62+
cd pycodestyle && \
6363
python setup.py build && \
6464
cd - && \
65-
git clone https://github.com/mbdevpl/argunparse ../argunparse && \
66-
cd ../argunparse && \
65+
git clone https://github.com/mbdevpl/argunparse argunparse && \
66+
cd argunparse && \
6767
pip install -r test_requirements.txt && \
6868
python setup.py build && \
6969
cd - && \
70-
git clone https://github.com/python-semver/python-semver ../semver && \
71-
cd ../semver && \
70+
git clone https://github.com/python-semver/python-semver semver && \
71+
cd semver && \
7272
python setup.py build && \
7373
cd - && \
7474
pip install jupyter

0 commit comments

Comments
 (0)