format fix
This commit is contained in:
@@ -10,11 +10,10 @@ declare -a editions edition_names
|
||||
for dir in "${INSTALL_DIR}"/*/; do
|
||||
[ -d "$dir" ] || continue
|
||||
edition=$(basename "$dir")
|
||||
run="${dir}/linusware/run.sh"
|
||||
if [ -f "$run" ] && [ -x "$run" ]; then
|
||||
edition_names+=("$edition")
|
||||
editions+=("$run")
|
||||
fi
|
||||
run="${dir}/run.sh"
|
||||
[ -f "$run" ] && [ -x "$run" ] || continue
|
||||
edition_names+=("$edition")
|
||||
editions+=("$run")
|
||||
done
|
||||
|
||||
if [ ${#editions[@]} -eq 0 ]; then
|
||||
|
||||
Reference in New Issue
Block a user