You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 14 of start_getty uses a regular expression that only works for single digit tty numbers. runtime_tty=$(echo $2 | grep -oh '[0-9]')
If you have e.g. a ttyPS10, it fails.
Please change line 14 to: runtime_tty=$(echo $2 | grep -oh '[0-9]*')
The text was updated successfully, but these errors were encountered:
Line 14 of start_getty uses a regular expression that only works for single digit tty numbers.
runtime_tty=$(echo $2 | grep -oh '[0-9]')
If you have e.g. a ttyPS10, it fails.
Please change line 14 to:
runtime_tty=$(echo $2 | grep -oh '[0-9]*')
The text was updated successfully, but these errors were encountered: