diff --git a/copy-posts/copy-posts.sh b/copy-posts/copy-posts.sh index 23a421e..299f6ad 100755 --- a/copy-posts/copy-posts.sh +++ b/copy-posts/copy-posts.sh @@ -5,6 +5,6 @@ NOTES=$(find Resources/blog/ -type f -not -path "*drafts/*" -name "*.md" ) for n in $NOTES; do BASE=$(basename $n|cut -d'.' -f1) - mkdir -vp /tmp/blog/content/posts/$BASE - cp -v $n /tmp/blog/content/posts/$BASE/index.md + mkdir -vp /tmp/blog/content/notes/$BASE + cp -v $n /tmp/blog/content/notes/$BASE/index.md done