Skip to content

Commit

Permalink
Merge pull request #60 from jordanruthe/klipperscreen_fix
Browse files Browse the repository at this point in the history
klipperscreen: update to fix an exit problem
  • Loading branch information
dw-0 committed Jan 20, 2021
2 parents 43a724b + 748a700 commit 8bf20aa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/install_klipperscreen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ python3_check(){
}

system_check_klipperscreen(){
[ ! -e ${HOME}/klipper_config/KlipperScreen.log ] && KLIPPERSCREEN_SL_FOUND="false"
if [ ! -e ${HOME}/klipper_config/KlipperScreen.log ]; then
KLIPPERSCREEN_SL_FOUND="false"
else
KLIPPERSCREEN_SL_FOUND="true"
fi
}

get_user_selections_klipperscreen(){
Expand Down

0 comments on commit 8bf20aa

Please sign in to comment.