mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
13 lines
189 B
Bash
13 lines
189 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# codegen
|
|
cd codegen
|
|
cargo run -- -o "../layouts/partials/recent-updates.html"
|
|
cd ..
|
|
|
|
git clone https://github.com/phil-opp/blog_os.git
|
|
cp -r blog_os/blog ../blog
|
|
./hugo
|