File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -58,11 +58,6 @@ find_config() {
58
58
if [ ! -f " $CONFIG_DIR /$CONFIG_FILE " ]; then
59
59
fatal " Could not find $CONFIG_FILE !"
60
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
61
fi
67
62
inform " Using $CONFIG_FILE in $CONFIG_DIR "
68
63
}
@@ -156,7 +151,8 @@ function apt_pkg_install {
156
151
sudo apt update
157
152
APT_HAS_UPDATED=true
158
153
fi
159
- sudo apt install -y " $PACKAGES "
154
+ # shellcheck disable=SC2086
155
+ sudo apt install -y $PACKAGES
160
156
check_for_error
161
157
if [ -f " $UNINSTALLER " ]; then
162
158
echo " apt uninstall -y $PACKAGES " >> " $UNINSTALLER "
You can’t perform that action at this time.
0 commit comments