Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit 1e21ad2

Browse files
authored
Merge pull request #10 from linuxserver/alpine-typo
fix typo
2 parents bfd1ea3 + d0c3570 commit 1e21ad2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ RUN \
4949
PYINSTVER=$(cat requirements-build.txt | grep pyinstaller | sed 's|pyinstaller==|v|') && \
5050
git clone --single-branch --branch develop https://github.com/pyinstaller/pyinstaller.git /tmp/pyinstaller && \
5151
cd /tmp/pyinstaller/bootloader && \
52-
git checkout $(PYINSTVER) && \
52+
git checkout ${PYINSTVER} && \
5353
/compose/.tox/${PY_ARG}/bin/python3 ./waf configure --no-lsb all && \
5454
/compose/.tox/${PY_ARG}/bin/pip3 install .. && \
5555
cd /compose && \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ RUN \
4949
PYINSTVER=$(cat requirements-build.txt | grep pyinstaller | sed 's|pyinstaller==|v|') && \
5050
git clone --single-branch --branch develop https://github.com/pyinstaller/pyinstaller.git /tmp/pyinstaller && \
5151
cd /tmp/pyinstaller/bootloader && \
52-
git checkout $(PYINSTVER) && \
52+
git checkout ${PYINSTVER} && \
5353
/compose/.tox/${PY_ARG}/bin/python3 ./waf configure --no-lsb all && \
5454
/compose/.tox/${PY_ARG}/bin/pip3 install .. && \
5555
cd /compose && \

Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ RUN \
4949
PYINSTVER=$(cat requirements-build.txt | grep pyinstaller | sed 's|pyinstaller==|v|') && \
5050
git clone --single-branch --branch develop https://github.com/pyinstaller/pyinstaller.git /tmp/pyinstaller && \
5151
cd /tmp/pyinstaller/bootloader && \
52-
git checkout $(PYINSTVER) && \
52+
git checkout ${PYINSTVER} && \
5353
/compose/.tox/${PY_ARG}/bin/python3 ./waf configure --no-lsb all && \
5454
/compose/.tox/${PY_ARG}/bin/pip3 install .. && \
5555
cd /compose && \

0 commit comments

Comments
 (0)