generated from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentry_point.sh
executable file
·37 lines (31 loc) · 1.01 KB
/
entry_point.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
set -euo pipefail
echo "Entry point script running"
CONFIG_FILE=_config.yml
# Function to manage Gemfile.lock
manage_gemfile_lock() {
git config --global --add safe.directory '*'
if command -v git &> /dev/null && [ -f Gemfile.lock ]; then
if git ls-files --error-unmatch Gemfile.lock &> /dev/null; then
echo "Gemfile.lock is tracked by git, keeping it intact"
git restore Gemfile.lock 2>/dev/null || true
else
echo "Gemfile.lock is not tracked by git, removing it"
rm Gemfile.lock
fi
fi
}
start_jekyll() {
manage_gemfile_lock
bundle exec jekyll serve --watch --port=8080 --host=0.0.0.0 --livereload --verbose --trace --force_polling &
}
start_jekyll
while true; do
inotifywait -q -e modify,move,create,delete $CONFIG_FILE
if [ $? -eq 0 ]; then
echo "Change detected to $CONFIG_FILE, restarting Jekyll"
jekyll_pid=$(pgrep -f jekyll)
kill -KILL $jekyll_pid
start_jekyll
fi
done