Skip to content
This repository was archived by the owner on Jan 1, 2024. It is now read-only.

Commit c5b2109

Browse files
tobbenbthelamer
authored andcommitted
Fix branch for version logic
1 parent b4e89cb commit c5b2109

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RUN \
8787
install && \
8888
echo "**** build domoticz ****" && \
8989
if [ -z ${DOMOTICZ_COMMIT+x} ]; then \
90-
DOMOTICZ_COMMIT=$(curl -sX GET https://api.github.com/repos/domoticz/domoticz/commits/master \
90+
DOMOTICZ_COMMIT=$(curl -sX GET https://api.github.com/repos/domoticz/domoticz/commits/development \
9191
| jq -r '. | .sha'); \
9292
fi && \
9393
git clone https://github.com/domoticz/domoticz.git /tmp/domoticz && \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ RUN \
9090
install && \
9191
echo "**** build domoticz ****" && \
9292
if [ -z ${DOMOTICZ_COMMIT+x} ]; then \
93-
DOMOTICZ_COMMIT=$(curl -sX GET https://api.github.com/repos/domoticz/domoticz/commits/master \
93+
DOMOTICZ_COMMIT=$(curl -sX GET https://api.github.com/repos/domoticz/domoticz/commits/development \
9494
| jq -r '. | .sha'); \
9595
fi && \
9696
git clone https://github.com/domoticz/domoticz.git /tmp/domoticz && \

Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ RUN \
9090
install && \
9191
echo "**** build domoticz ****" && \
9292
if [ -z ${DOMOTICZ_COMMIT+x} ]; then \
93-
DOMOTICZ_COMMIT=$(curl -sX GET https://api.github.com/repos/domoticz/domoticz/commits/master \
93+
DOMOTICZ_COMMIT=$(curl -sX GET https://api.github.com/repos/domoticz/domoticz/commits/development \
9494
| jq -r '. | .sha'); \
9595
fi && \
9696
git clone https://github.com/domoticz/domoticz.git /tmp/domoticz && \

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ app_setup_block: |
7373
7474
# changelog
7575
changelogs:
76+
- { date: "19.02.19:", desc: "Fix branch for version logic." }
7677
- { date: "11.02.19:", desc: "Add pipeline logic and multi arch." }
7778
- { date: "02.07.18:", desc: "Add openssh package." }
7879
- { date: "01.07.18:", desc: "Fix backup/restore in webgui." }

0 commit comments

Comments
 (0)