mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
11 lines
153 B
Bash
Executable file
11 lines
153 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [[ ! -d _blog ]]; then
|
|
git clone git://github.com/samsonjs/blog.git _blog
|
|
else
|
|
cd _blog
|
|
git pull
|
|
cd ..
|
|
fi
|
|
|
|
./blog.rb _blog
|