We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 564fbd8 commit 2d0c7f6Copy full SHA for 2d0c7f6
1 file changed
install.sh
@@ -58,11 +58,6 @@ find_config() {
58
if [ ! -f "$CONFIG_DIR/$CONFIG_FILE" ]; then
59
fatal "Could not find $CONFIG_FILE!"
60
fi
61
- else
62
- if [ -f "/boot/$CONFIG_FILE" ] && [ ! -L "/boot/$CONFIG_FILE" ]; then
63
- warning "Oops! It looks like /boot/$CONFIG_FILE is not a link to $CONFIG_DIR/$CONFIG_FILE"
64
- warning "You might want to fix this!"
65
- fi
66
67
inform "Using $CONFIG_FILE in $CONFIG_DIR"
68
}
@@ -156,7 +151,8 @@ function apt_pkg_install {
156
151
sudo apt update
157
152
APT_HAS_UPDATED=true
158
153
159
- sudo apt install -y "$PACKAGES"
154
+ # shellcheck disable=SC2086
155
+ sudo apt install -y $PACKAGES
160
check_for_error
161
if [ -f "$UNINSTALLER" ]; then
162
echo "apt uninstall -y $PACKAGES" >> "$UNINSTALLER"
0 commit comments