Skip to content

Commit

Permalink
fix an oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
j-hc committed Jun 10, 2023
1 parent 0fed34c commit e6b1617
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ build_rv_w() {
if [ "$LOGGING_F" = true ]; then
logf=logs/"${table_name,,}.log"
: >"$logf"
build_rv 2>&1 "$(declare -p app_args)" | tee "$logf"
{ build_rv 2>&1 "$(declare -p app_args)" | tee "$logf"; } &
else
build_rv "$(declare -p app_args)"
build_rv "$(declare -p app_args)" &
fi
}

Expand Down Expand Up @@ -142,9 +142,9 @@ for table_name in $(toml_get_table_names); do
app_args[table]="$table_name (arm-v7a)"
app_args[module_prop_name]="${app_args[module_prop_name]}-arm"
app_args[arch]="arm-v7a"
build_rv_w &
build_rv_w
else
build_rv_w &
build_rv_w
fi
done
wait
Expand Down

0 comments on commit e6b1617

Please sign in to comment.