mirror of
https://github.com/notwa/rc
synced 2024-11-05 02:29:06 -08:00
use $HOME
instead of ~
for hush
in recombine
This commit is contained in:
parent
cf12a27ea6
commit
5296e9831b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue