all repos — website @ c29cfaa65b9e3219a1556d872601733970d92ffa

personal website hosted at prithu.xyz, built using hugo

imba/note-search/build-and-copy-2-hugo.sh

1 2 3 4 5 6 7
#!/bin/bash

NOTES_LIST_HTML=/home/prithu/src/website/layouts/notes/list.html
npm run build
rsync --delete -av dist/assets/ /home/prithu/src/website/static/assets
ls dist/assets/*js | xargs basename | xargs -I{} sed -i s/main.*\.js/{}/ $NOTES_LIST_HTML
ls dist/assets/index*.css | xargs basename | xargs -I{} sed -i s/index.*\.css/{}/ $NOTES_LIST_HTML