Change Run to use bundle exec instead of normal exec jekyll

This commit is contained in:
Amir Pourmand 2024-10-02 10:21:52 +03:30 committed by GitHub
parent caddec2fcd
commit c0d53e6316
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,7 @@ manage_gemfile_lock() {
start_jekyll() {
manage_gemfile_lock
exec jekyll serve --watch --port=8080 --host=0.0.0.0 --livereload --verbose --trace --force_polling &
bundle exec jekyll serve --watch --port=8080 --host=0.0.0.0 --livereload --verbose --trace --force_polling &
}
start_jekyll