testing in prod :3

This commit is contained in:
Jacob Janzen 2024-10-01 18:02:35 -05:00
parent 36ee833f36
commit 18c25a4fc1

View file

@ -49,7 +49,9 @@ git checkout main
echo '#+title: Dotfiles' >> index.org echo '#+title: Dotfiles' >> index.org
echo 'This is my system configuration. These pages are automatically generated from the sources hosted [[https://git.sr.ht/~jjanzen/.dotfiles][here]]. Choose which system to browse: ' >> index.org echo 'This is my system configuration. These pages are automatically generated from the sources hosted [[https://git.sr.ht/~jjanzen/.dotfiles][here]]. Choose which system to browse: ' >> index.org
find -- . -maxdepth 1 -type d | sed '/\(^\.$\|^\.\/\.git$\|\.\/common\)/d' | while read -r root; do find -- . -maxdepth 1 -type d | sed '/\(^\.$\|^\.\/\.git$\|\.\/common\)/d' | while read -r root; do
echo creating root $root
root=$(echo "$root" | sed 's/\(\.\/\|\/$\)//') root=$(echo "$root" | sed 's/\(\.\/\|\/$\)//')
echo root after cleanup: $root
echo "- [[https://jjanzen.ca/dotfiles/$root][$root]]" >> index.org echo "- [[https://jjanzen.ca/dotfiles/$root][$root]]" >> index.org
cd "$root" || exit cd "$root" || exit
create_dir_tree "$root" create_dir_tree "$root"