2022-10-23 00:00:00 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
2022-11-12 15:49:07 +03:00
|
|
|
# remove old generated files
|
2022-10-23 00:00:00 +03:00
|
|
|
rm ./public*.tar.xz
|
|
|
|
rm -rf ./public/
|
2022-11-12 15:49:07 +03:00
|
|
|
|
|
|
|
# generate new public files
|
2022-10-30 13:36:53 +03:00
|
|
|
hugo
|
2022-11-12 15:49:07 +03:00
|
|
|
|
|
|
|
# make public data archive
|
|
|
|
#cd ./public/
|
|
|
|
#tar -cJf "../public.tar.xz" .
|