librealsense
librealsense copied to clipboard
Bash script made an incorrect string comparison
if [ "4.4" == PATCHES_REV ];
was replaced with:
if [ "4.4" = "$PATCHES_REV" ];
Missing $.
Thanks for contribution! Please re-submit this PR to 'development' branch so we can merge it. @Nir-Az can you speedup and change PR branch?
@jcremona Can you confirm testing this change on JP 4.4?
@jcremona Can you confirm testing this change on JP 4.4?
I've tested on L4T version 32.2.1. When tested on this version, this script sets PATCHES_REV to 4.4. My Jetson TX2 has a JetPack 4.2.2.
@jcremona Can you confirm testing this change on JP 4.4?
I've tested on L4T version 32.2.1. When tested on this version, this script sets
PATCHES_REVto4.4. My Jetson TX2 has a JetPack 4.2.2.
Great, thanks!