diff --git a/blog.bryanroessler.com/_posts/2018-12-03-deploying-multiple-jekyll-sites.md b/blog.bryanroessler.com/_posts/2018-12-03-deploying-multiple-jekyll-sites.md index c80b231..bb3cbe7 100644 --- a/blog.bryanroessler.com/_posts/2018-12-03-deploying-multiple-jekyll-sites.md +++ b/blog.bryanroessler.com/_posts/2018-12-03-deploying-multiple-jekyll-sites.md @@ -55,8 +55,8 @@ for site in *.*/; do chmod g+s "$deploy_dir" fi pushd "${site}" || exit $? - bundle install --deployment - bundle exec jekyll build --destination "$deploy_dir" + ruby -S bundle install --deployment + ruby -S bundle exec jekyll build --destination "$deploy_dir" popd || exit $? done diff --git a/scripts/_var_lib_git_gogs-repositories_bryan_www.git_hooks_post-receive.sh b/scripts/_var_lib_git_gogs-repositories_bryan_www.git_hooks_post-receive.sh index 6742ee9..2a9bde4 100644 --- a/scripts/_var_lib_git_gogs-repositories_bryan_www.git_hooks_post-receive.sh +++ b/scripts/_var_lib_git_gogs-repositories_bryan_www.git_hooks_post-receive.sh @@ -23,8 +23,8 @@ for site in *.*/; do chmod g+s "$deploy_dir" fi pushd "${site}" || exit $? - bundle install --deployment - bundle exec jekyll build --destination "$deploy_dir" + ruby -S bundle install --deployment + ruby -S bundle exec jekyll build --destination "$deploy_dir" popd || exit $? done