BUGFIX: Fixed Typo in Variable for Crowsnest dependencies

* Affected files: install.sh and custompios module

Signed-off-by: Stephan Wendel <me@stephanwe.de>
This commit is contained in:
Stephan Wendel 2021-12-17 19:15:10 +01:00
parent 29594c6139
commit 4b6fc0d8c3
No known key found for this signature in database
GPG Key ID: F465B83ACBA45639
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
# crowsnest # crowsnest
[ -n "$CROWSNEST_CROWSNEST_REPO_SHIP" ] || CROWSNEST_CROWSNEST_REPO_SHIP=https://github.com/mainsail-crew/crowsnest.git [ -n "$CROWSNEST_CROWSNEST_REPO_SHIP" ] || CROWSNEST_CROWSNEST_REPO_SHIP=https://github.com/mainsail-crew/crowsnest.git
[ -n "$CROWSNEST_CROWSNEST_REPO_BRANCH" ] || CROWSNEST_CROWSNEST_REPO_BRANCH=master [ -n "$CROWSNEST_CROWSNEST_REPO_BRANCH" ] || CROWSNEST_CROWSNEST_REPO_BRANCH=master
[ -n "$CROWSNEST_CROWSNEST_DEPS" ] || CROWSNEST_DEPS="git crudini bsdutils" [ -n "$CROWSNEST_CROWSNEST_DEPS" ] || CROWSNEST_CROWSNEST_DEPS="git crudini bsdutils findutils v4l-utils"
[ -n "$CROWSNEST_DEFAULT_CONF" ] || CROWSNEST_DEFAULT_CONF="mainsail_default.conf" [ -n "$CROWSNEST_DEFAULT_CONF" ] || CROWSNEST_DEFAULT_CONF="mainsail_default.conf"
[ -n "$CROWSNEST_DEFAULT_CONF_DIR" ] || CROWSNEST_DEFAULT_CONF_DIR="/home/${BASE_USER}/klipper_config" [ -n "$CROWSNEST_DEFAULT_CONF_DIR" ] || CROWSNEST_DEFAULT_CONF_DIR="/home/${BASE_USER}/klipper_config"
[ -n "$CROWSNEST_MOONRAKER_SUPPORT" ] || CROWSNEST_MOONRAKER_SUPPORT="y" [ -n "$CROWSNEST_MOONRAKER_SUPPORT" ] || CROWSNEST_MOONRAKER_SUPPORT="y"

View File

@ -182,7 +182,7 @@ function install_crowsnest {
## Install Dependencies ## Install Dependencies
echo -e "Installing 'crowsnest' Dependencies ..." echo -e "Installing 'crowsnest' Dependencies ..."
# shellcheck disable=2086 # shellcheck disable=2086
sudo apt install --yes --no-install-recommends $CROWSNEST_DEPS > /dev/null sudo apt install --yes --no-install-recommends $CROWSNEST_CROWSNEST_DEPS > /dev/null
echo -e "Installing 'crowsnest' Dependencies ... [OK]" echo -e "Installing 'crowsnest' Dependencies ... [OK]"
## Link webcamd to $PATH ## Link webcamd to $PATH
echo -en "Linking webcamd ...\r" echo -en "Linking webcamd ...\r"