fixed typo in docker entrypoint
This commit is contained in:
parent
0e2e0a1441
commit
4c1557d53a
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
[[ -n "$ZEITDL_UID" || -n "$ZEITDL_GID" ]] && chown_arg='-q'
|
[[ -n "$ZEITDL_UID" || -n "$ZEITDL_GID" ]] && chown_arg='-q'
|
||||||
if out=$(python ./zeit-dl "$ZEITDL_USER" "$ZEITDL_PASSWORD" ${ZEITDL_OPTIONS:=-o /data} $chown_arg) then
|
if out=$(python ./zeit-dl "$ZEITDL_USER" "$ZEITDL_PASSWORD" ${ZEITDL_OPTIONS:=-o /data} $chown_arg); then
|
||||||
[[ -n "$ZEITDL_UID" ]] && chown $ZEITDL_UID "$out"
|
[[ -n "$ZEITDL_UID" ]] && chown $ZEITDL_UID "$out"
|
||||||
[[ -n "$ZEITDL_GID" ]] && chgrp $ZEITDL_GID "$out"
|
[[ -n "$ZEITDL_GID" ]] && chgrp $ZEITDL_GID "$out"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue