diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-09 22:45:26 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-09 22:45:26 -0500 |
commit | 367f64ccd8d4c11a12d880841caa399560f49e75 (patch) | |
tree | c8c0ce7c6e60c459a80007d71b292c6eff46109f | |
parent | e1993e43a0d97678c4563e1453cf0a1cf2b6cb7f (diff) |
add urlroot to roots (lol)
-rwxr-xr-x | fix-dotfile-paths.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fix-dotfile-paths.sh b/fix-dotfile-paths.sh index 5dd0ee1..992644c 100755 --- a/fix-dotfile-paths.sh +++ b/fix-dotfile-paths.sh @@ -27,7 +27,7 @@ create_ls_entry () { create_dir_tree () { ROOT="$HOME/.dotfiles/$1" URLROOT="https://jjanzen.ca/dotfiles/$1/" - create_ls_entry "" + create_ls_entry "" "$URLROOT" # iterate over all directories find -L -- . -type d | sed '/^\.$/d' | while read -r dir; do |