From 42a5a0b6d80627e8d3a298a383beeb7992f9feee Mon Sep 17 00:00:00 2001 From: domi Date: Thu, 26 Nov 2020 11:00:05 +0100 Subject: [PATCH] fix: fix typo, should fix #42 --- scripts/update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/update.sh b/scripts/update.sh index cd305d2..b7a9aa8 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -73,8 +73,8 @@ update_klipper(){ status_msg "Fetching from $FETCH_BRANCH" cd $KLIPPER_DIR git fetch $FETCH_BRANCH -q && ok_msg "Fetch successfull!" - status_msg "Checking out $FETCH_BRANCH" - git checkout $FETCH_BRANCH -q && ok_msg "Checkout successfull!" + status_msg "Checking out $GET_BRANCH" + git checkout $GET_BRANCH -q && ok_msg "Checkout successfull!" #check for possible new dependencies and install them status_msg "Checking for possible new dependencies ..." PKGLIST=$(grep "PKGLIST=" ~/klipper/scripts/install-octopi.sh | cut -d'"' -f2- | cut -d'"' -f1 | cut -d"}" -f2)