speedie-overlay/push.sh

10 lines
345 B
Bash
Raw Normal View History

2022-11-11 16:01:27 +01:00
#!/bin/sh
git add *
tree -I md5 | grep -vE "profiles|metadata|md5|Manifest|README|xml|repo_name|conf|directories" > .tree
cp -f README.tp.md README.md
printf "\n## List of all ebuilds\n" >> README.md
cat .tree >> README.md
markdown README.md > README.html
rm -f .tree
git commit -m "Update overlay" && git push && printf "Successfully pushed\n"