🐛 Fix issue where not all installers were run
Not entirely sure why, but find | while read was skipping some files. Switching to find -exec fixed it, and is cleaner & shorter to boot.
This commit is contained in:
parent
58a316b303
commit
2adf2b18d3
1 changed files with 1 additions and 3 deletions
|
@ -161,9 +161,7 @@ set_os_prefs
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
print_title Installers
|
print_title Installers
|
||||||
find . -name install.fish | while read installer
|
find . -name install.fish -exec fish -c {} ';'
|
||||||
fish -c "$installer"
|
|
||||||
end
|
|
||||||
|
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue