add LICENSE to ignorelist

This commit is contained in:
Jacob Janzen 2024-08-08 20:35:43 -05:00
parent 7d9f730031
commit 5c044f70f6

View file

@ -13,7 +13,7 @@ create_ls_entry () {
done
echo "* Files" >> index.org
find -- . -maxdepth 1 -type f | sed 's/^\.\///' | while read -r file; do
if echo "${file}" | grep -q "\(\.tar\.gz$\|\*|^index\.org$\|^README\.md$\|^\.build\.yml$\|^install$\)"; then
if echo "${file}" | grep -q "\(\.tar\.gz$\|\*|^index\.org$\|^README\.md$\|^\.build\.yml$\|^install$\|^LICENSE$\)"; then
continue
elif [ "${file}" = ".wallpaper" ]; then
echo "- [[https://wallhaven.cc/w/vgryy5][.wallpaper]]" >> index.org
@ -26,7 +26,7 @@ create_ls_entry () {
new_file=$file
fi
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
}