Skip to content

Commit

Permalink
Merge pull request RMerl#855 from Martinski4GitHub/master
Browse files Browse the repository at this point in the history
rom: Fixed comparisons of F/W versions in update script
  • Loading branch information
RMerl authored Jul 3, 2024
2 parents 44f26ba + 723cc91 commit a4cd220
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release/src/router/rom/webs_scripts/merlin_webs_update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ else
newfirm=1
elif [ "$current_base" -eq "$firmbase" ] && [ "$current_firm" -lt "$firmver" ]; then
newfirm=1
elif [ "$current_base" -eq "$firmbase" ] && [ "$current_firm" -eq "$current_firm" ] && [ "$current_buildno" -lt "$buildno" ]; then
elif [ "$current_base" -eq "$firmbase" ] && [ "$current_firm" -eq "$firmver" ] && [ "$current_buildno" -lt "$buildno" ]; then
newfirm=1
elif [ "$current_base" -eq "$firmbase" ] && [ "$current_firm" -eq "$current_firm" ] && [ "$current_buildno" -eq "$buildno" ] && [ "$current_extendno" -lt "$lextendno" ]; then
elif [ "$current_base" -eq "$firmbase" ] && [ "$current_firm" -eq "$firmver" ] && [ "$current_buildno" -eq "$buildno" ] && [ "$current_extendno" -lt "$lextendno" ]; then
newfirm=1
else
newfirm=0
Expand Down

0 comments on commit a4cd220

Please sign in to comment.