From c0d53e631630b19328f30f9e0da900ff1161eb27 Mon Sep 17 00:00:00 2001 From: Amir Pourmand Date: Wed, 2 Oct 2024 10:21:52 +0330 Subject: [PATCH] Change Run to use bundle exec instead of normal exec jekyll --- bin/entry_point.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/entry_point.sh b/bin/entry_point.sh index 9627ab1..cdd6f0f 100755 --- a/bin/entry_point.sh +++ b/bin/entry_point.sh @@ -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