Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix chown invocation #228

Merged
merged 1 commit into from Jul 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion opts.yml
Expand Up @@ -11,4 +11,4 @@ tags:
pages: pages
releases:
tag:
pages: 3.7.3 # 07/07/2018
pages: 3.7.3 # 07/09/2018
2 changes: 1 addition & 1 deletion repos/jekyll/copy/all/usr/jekyll/bin/entrypoint
Expand Up @@ -22,7 +22,7 @@ if [ "$JEKYLL_UID" != "0" ] && [ "$JEKYLL_UID" != "$(id -u jekyll)" ]; then
groupmod -g $JEKYLL_GID jekyll
chown_args=""

[ "$FULL_CHOWN" ] && chown_args="-r"
[ "$FULL_CHOWN" ] && chown_args="-R"
for d in "$JEKYLL_DATA_DIR" "$JEKYLL_VAR_DIR"; do
chown $chown_args "$d"
done
Expand Down