Skip to content

Commit

Permalink
Fix executable shell files for user mode #390 (#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
GioF71 committed Mar 27, 2024
1 parent 365a723 commit 6263186
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ RUN if [ "$USE_APT_PROXY" = "Y" ]; then \
rm /etc/apt/apt.conf.d/01proxy; \
fi

RUN rm -Rf /app/install

RUN echo $BUILD_MODE > /app/conf/build_mode.txt

FROM scratch
Expand Down Expand Up @@ -213,10 +215,10 @@ COPY app/bin/get-version-ext.sh /app/bin/
COPY app/bin/read-file.sh /app/bin/
COPY app/bin/get-value.sh /app/bin/
COPY app/bin/config-builder.sh /app/bin/
RUN chmod u+x /app/bin/*.sh
RUN chmod +x /app/bin/*.sh

COPY app/bin/get-tidal-credentials.py /app/bin/
RUN chmod u+x /app/bin/get-tidal-credentials.py
RUN chmod +x /app/bin/get-tidal-credentials.py

COPY README.md /app/doc

Expand Down
1 change: 1 addition & 0 deletions doc/change-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Change Date|Major Changes
---|---
2024-03-27|Fix executable shell files for user mode (see issue [#390](https://github.com/GioF71/upmpdcli-docker/issues/390)))
2024-03-24|Add support for upnp log file and level (see issue [#383](https://github.com/GioF71/upmpdcli-docker/issues/383)))
2024-03-05|Review default naming (see issue [#381](https://github.com/GioF71/upmpdcli-docker/issues/381)))
2024-03-05|Automatically set upnpip instead of upnpiface (see issue [#379](https://github.com/GioF71/upmpdcli-docker/issues/379)))
Expand Down

0 comments on commit 6263186

Please sign in to comment.