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
Code does not trigger into OSX condition (Len > 17) because it always trips at Ubuntu condition Len > 11, also substring usage is incorrect withing these functions. Needs to be substring(0, x) not simply, substring(x)
Solution:
Clarify OSX conditional, change sub-strings, test for use of cu vs tty port for OSX
Fix conditional
Fix substrings
Clarify cu vs. tty
Test on OSX
Test on Ubuntu
The text was updated successfully, but these errors were encountered:
Issue:
Code does not trigger into OSX condition (
Len > 17
) because it always trips at Ubuntu conditionLen > 11
, alsosubstring
usage is incorrect withing these functions. Needs to besubstring(0, x)
not simply,substring(x)
Solution:
Clarify OSX conditional, change sub-strings, test for use of cu vs tty port for OSX
The text was updated successfully, but these errors were encountered: