fix dotfile fixer

This commit is contained in:
Jacob Janzen 2024-12-29 10:44:30 -06:00
parent a5fbeb31be
commit 8587af9edf
2 changed files with 5 additions and 5 deletions

View file

@ -25,5 +25,5 @@ cd ~/dotfiles || exit
emacs --batch -f package-initialize --script ~/website/publish.el
~/website/post-publish.sh
cp -r "public_html/*" "$location"
cp -r "$HOME/public_html/*" "$location"
chown git:git "$location"

View file

@ -32,7 +32,7 @@ create_ls_entry () {
}
create_dir_tree () {
ROOT="$HOME/.dotfiles/$1"
ROOT="$HOME/dotfiles/$1"
URLROOT="https://jjanzen.ca/dotfiles/$1/"
create_ls_entry "" "$URLROOT"
@ -48,10 +48,10 @@ create_dir_tree () {
done
}
cd ~/.dotfiles || exit
cd ~/dotfiles || exit
git checkout main
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
echo creating root $root
root=$(echo "$root" | sed 's/\(\.\/\|\/$\)//')
@ -59,7 +59,7 @@ find -- . -maxdepth 1 -type d | sed '/\(^\.$\|^\.\/\.git$\|\.\/common\)/d' | whi
echo "- [[https://jjanzen.ca/dotfiles/${root}][${root}]]" >> index.org
cd "$root" || exit
create_dir_tree "$root"
cd ~/.dotfiles || exit
cd ~/dotfiles || exit
done
cd || exit