We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1fcc254 + d184dae commit 8c2c766Copy full SHA for 8c2c766
1 file changed
maclaunch.sh
@@ -139,7 +139,7 @@ function disablePeriodic() {
139
function listKernelExtensions {
140
local filter="$1"
141
142
- if isSystemItemsDisabled; then
+ if ! isSystemItemsEnabled; then
143
return
144
fi
145
@@ -321,7 +321,7 @@ function listLaunchItems {
321
322
# add system dirs too if we supplied the system parameter
323
if [ "$filter" == "system" ]; then
324
- if ! isSystemItemsDisabled; then
+ if isSystemItemsEnabled; then
325
itemDirectories=("${itemDirectories[@]}" "${system_dirs[@]}")
326
filter=""
327
0 commit comments