about summary refs log tree commit diff
path: root/deploy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deploy.sh')
-rwxr-xr-xdeploy.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/deploy.sh b/deploy.sh
index dd55d69..9df74cc 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -7,6 +7,7 @@ cp logo-* style.css dest
 cat _index_header.html > dest/index.html
 for f in $(find itemy -name '*.md'); do
   file=$(basename $f .md)
+  cp itemy/$file.jpg dest/$file.jpg
   title=$(grep '^# ' $f | head -n 1 | cut -c 3-)
   echo "<li><a href=\"$file.html\">$title</a></li>" >> dest/index.html
   cat _header.html > dest/$file.html