hglmandel/prev

17 lines
346 B
Text
Raw Normal View History

2012-05-03 13:40:35 +00:00
#!/usr/bin/env zsh
webroot="$HOME/Sites/webroot"
print -- "Create article"
./create_ymd.sh > $webroot/latest.ymd
print -- "Copy sources"
for langue in en fr; do
dst="$webroot/output/Scratch/$langue/blog/Haskell-OpenGL-Mandelbrot/code"
[[ ! -d $dst ]] && mkdir -p $dst
cp -r *.lhs ??_*(N/) $dst
done
cd $webroot
./tasks/recompile