diff options
-rw-r--r-- | .scripts/find_nonexistent_installed_packages.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.scripts/find_nonexistent_installed_packages.sh b/.scripts/find_nonexistent_installed_packages.sh index 17fb0e2..a7f857e 100644 --- a/.scripts/find_nonexistent_installed_packages.sh +++ b/.scripts/find_nonexistent_installed_packages.sh @@ -10,6 +10,6 @@ do # as soon as we find a package => got to next package in outer loop [[ -d "${overlay}/${package}" ]] && continue 2; done - # this is reached ONLY if the package was NOT found + # this is reached ONLY if the package was NOT found in the tree echo "${package}" done |