Skip to content

Commit

Permalink
Fixes #2328 - config-rvd.sh if/then/else syntax bug
Browse files Browse the repository at this point in the history
  • Loading branch information
otsakir committed Jul 7, 2017
1 parent 54bb452 commit c373809
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fi

echo "Configuring RVD"

if [ "$RVD_VIDEO_SUPPORT" = true || "$RVD_VIDEO_SUPPORT" = TRUE || "$RVD_VIDEO_SUPPORT" = True ] ; then
if [[ "$RVD_VIDEO_SUPPORT" = true || "$RVD_VIDEO_SUPPORT" = TRUE || "$RVD_VIDEO_SUPPORT" = True ]] ; then
updateVideoSupport true
else
updateVideoSupport false
Expand Down

0 comments on commit c373809

Please sign in to comment.