Update readme, use a sort order for install scripts
This commit is contained in:
@ -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"
|
||||
|
Reference in New Issue
Block a user