Update entry_point.sh (#2707)

This commit is contained in:
Amir Pourmand 2024-09-26 08:40:15 +03:30 committed by GitHub
parent bdf4ce32e5
commit 6265269bd4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
CONFIG_FILE=_config.yml
/bin/bash -c "rm -f Gemfile.lock && exec jekyll serve --watch --port=8080 --host=0.0.0.0 --livereload --verbose --trace --force_polling"&
/bin/bash -c "git restore Gemfile.lock && exec jekyll serve --watch --port=8080 --host=0.0.0.0 --livereload --verbose --trace --force_polling"&
while true; do
@ -15,7 +15,7 @@ while true; do
jekyll_pid=$(pgrep -f jekyll)
kill -KILL $jekyll_pid
/bin/bash -c "rm -f Gemfile.lock && exec jekyll serve --watch --port=8080 --host=0.0.0.0 --livereload --verbose --trace --force_polling"&
/bin/bash -c "git restore Gemfile.lock && exec jekyll serve --watch --port=8080 --host=0.0.0.0 --livereload --verbose --trace --force_polling"&
fi