mirror of
https://github.com/rsms/inter.git
synced 2024-11-29 14:34:53 +03:00
10 lines
187 B
Bash
10 lines
187 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
if [ ! -s lab/fonts ]; then
|
||
|
ln -s ../../build/dist lab/fonts
|
||
|
fi
|
||
|
|
||
|
jekyll serve --limit_posts 20 --watch --host 127.0.0.1 --port 3002 --open-url
|