Update readme, use a sort order for install scripts

This commit is contained in:
2025-01-25 20:57:03 -06:00
parent aa64550b72
commit 562443c34f
11 changed files with 23 additions and 10 deletions

View File

@ -18,8 +18,8 @@ while [[ $# > 0 ]]; do
done
log "install_programs // single_script_filter: $single_script_filter"
local scripts=(`find ./installs_and_builds -maxdepth 1 -mindepth 1 -type f`)
for script in $scripts; do
local scripts=$(find ./installs_and_builds -maxdepth 1 -mindepth 1 -type f | sort)
for script in ${=scripts}; do
if [[ -x $script ]]; then
if echo "$script" | grep -qv "$single_script_filter"; then
log "filter is $single_script_filter // ignoring: $script"