Fix build command in deploy.rb

This commit is contained in:
Luna 2021-05-06 17:40:52 +00:00
parent a03f3ea5fa
commit 4c9c6c39d2
Signed by: luna
GPG Key ID: 48ABA804580B9BA8
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ namespace :deploy do
task :update_jekyll do
on roles(:app) do
within "#{deploy_to}/current" do
execute :jekyll, "build"
execute :bundle, "exec", "jekyll", "build"
end
end
end