Skip to content

Commit

Permalink
[tui] Fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
goldyfruit committed Nov 21, 2023
1 parent 8c7f9a7 commit 867c520
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tui/features.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export FEATURE_GUI="false"
export FEATURE_SKILLS="false"

features=("skills" "$SKILL_DESCRIPTION" ON)
if [[ "$RASPBERRYPI_MODEL" != *"Raspberry Pi 3"* ]] || [[ "$KERNEL" == *"microsoft"* ]]; then
if [[ "$RASPBERRYPI_MODEL" != *"Raspberry Pi 3"* ]] && [[ "$KERNEL" != *"microsoft"* ]]; then
features+=("gui" "$GUI_DESCRIPTION" OFF)
fi

Expand Down

0 comments on commit 867c520

Please sign in to comment.