From f30dd6cc81ed3c3b528f8115b1c00df704bd4d3f Mon Sep 17 00:00:00 2001 From: bryan Date: Fri, 13 Mar 2020 10:13:50 -0400 Subject: [PATCH] Use newer version of ruby --- .../_posts/2018-12-03-deploying-multiple-jekyll-sites.md | 4 ++-- ..._git_gogs-repositories_bryan_www.git_hooks_post-receive.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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