Skip to content

Commit

Permalink
Fix incorrect path when setting file permissions for data directory
Browse files Browse the repository at this point in the history
(cherry picked from commit 3eb4469)
  • Loading branch information
dullage committed Jul 24, 2024
1 parent e961c44 commit 85f36ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ flatnotes_command="python -m \

if [ `id -u` -eq 0 ] && [ `id -g` -eq 0 ]; then
echo Setting file permissions...
chown -R ${PUID}:${PGID} ./
chown -R ${PUID}:${PGID} ${FLATNOTES_PATH}

echo Starting flatnotes as user ${PUID}...
exec ${EXEC_TOOL} ${PUID}:${PGID} ${flatnotes_command}
Expand Down

0 comments on commit 85f36ec

Please sign in to comment.