fix files not appearing

This commit is contained in:
Jacob Janzen 2024-08-08 20:40:12 -05:00
parent 5c044f70f6
commit 0286dc4925

View file

@ -16,17 +16,13 @@ create_ls_entry () {
if echo "${file}" | grep -q "\(\.tar\.gz$\|\*|^index\.org$\|^README\.md$\|^\.build\.yml$\|^install$\|^LICENSE$\)"; then if echo "${file}" | grep -q "\(\.tar\.gz$\|\*|^index\.org$\|^README\.md$\|^\.build\.yml$\|^install$\|^LICENSE$\)"; then
continue continue
elif [ "${file}" = ".wallpaper" ]; then elif [ "${file}" = ".wallpaper" ]; then
echo "- [[https://wallhaven.cc/w/vgryy5][.wallpaper]]" >> index.org echo "- [[https://wallhaven.cc/w/vgryy5][=.wallpaper=]]" >> index.org
continue continue
fi fi
if echo "${file}" | grep -q "\.org$"; then new_file=$(basename "$(grep -q '#+begin_src' "${file}" | head -1 | cut -d ' ' -f 4)")
new_file=$(basename "$(grep -q '#+begin_src' "${file}" | head -1 | cut -d ' ' -f 4)")
else
new_file=$file
fi
html=$(echo "${file}" | sed 's/\.org$/\.html/') html=$(echo "${file}" | sed 's/\.org$/\.html/')
echo "- [[https://jjanzen.ca/dotfiles/$1${html}][${new_file}]]" >> index.org echo "- [[https://jjanzen.ca/dotfiles/$1${html}][=${new_file}=]]" >> index.org
done done
} }