sigal.sh
· 316 B · Bash
Исходник
#!/bin/sh
export PATH="$PATH:/home/user/.local/bin"
# Sigal's user CSS import fails without running directly in the same directory where the config is
cd /home/user/sigal/
sigal build -c /home/user/sigal/sigal.conf.py /home/jce/gallery /home/user/sigal/_build
sigal serve -c /home/user/sigal/sigal.conf.py -p 8080
| 1 | #!/bin/sh |
| 2 | |
| 3 | export PATH="$PATH:/home/user/.local/bin" |
| 4 | |
| 5 | # Sigal's user CSS import fails without running directly in the same directory where the config is |
| 6 | cd /home/user/sigal/ |
| 7 | |
| 8 | sigal build -c /home/user/sigal/sigal.conf.py /home/jce/gallery /home/user/sigal/_build |
| 9 | sigal serve -c /home/user/sigal/sigal.conf.py -p 8080 |