1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-09-19 14:54:05 -07:00

use $HOME instead of ~ for hush in recombine

This commit is contained in:
Connor Olding 2024-07-21 22:21:50 -07:00
parent cf12a27ea6
commit 5296e9831b

View file

@ -22,7 +22,7 @@ case "$sh" in
esac
printf %s\\n '#!/usr/bin/env false' '[ -n "$preload" ] || exit 1' ''
for f in ~/sh/*; do
for f in "${HOME:?}/sh"/*; do
[ -n "${f##*.*}" ] && [ -f "$f" ] || continue
i=10 sh=
while IFS= read -r line; do