Skip to content

Commit

Permalink
Merge pull request #26 from paul-1/picore_bb1.34_awk_changes
Browse files Browse the repository at this point in the history
busybox 1.34 will require that "break" used in awk scripts must be us…
  • Loading branch information
clbr committed Sep 6, 2021
2 parents e597cf0 + bcfe18a commit 2fd10f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usr/bin/select
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ function read_console() {
END {
if ( NR < 1 ) {
print "q" > answer
break
exit
}
if ( NR == 1 ) {
print A[1] > answer
break
exit
}
do {
system ("clear")
Expand Down

0 comments on commit 2fd10f8

Please sign in to comment.