Update readme, use a sort order for install scripts

This commit is contained in:
david
2025-04-04 16:55:39 -05:00
parent fc189d33d3
commit a277b12884
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"