summaryrefslogtreecommitdiff
path: root/.scripts
diff options
context:
space:
mode:
authorben <benjaminfranzke@gmail.com>2010-01-10 15:57:18 +0100
committerben <benjaminfranzke@gmail.com>2010-01-10 15:57:18 +0100
commit6d8f1c0666bd7aa02ff7fb4651c157d7dfabeea9 (patch)
tree8de5c5954e3ae99b5f7afa5f026132401f773800 /.scripts
parent37d505d7d74f54369ddec5bab40b5fa7fc9a0859 (diff)
downloaddotfiles-6d8f1c0666bd7aa02ff7fb4651c157d7dfabeea9.tar.gz
dotfiles-6d8f1c0666bd7aa02ff7fb4651c157d7dfabeea9.tar.bz2
dotfiles-6d8f1c0666bd7aa02ff7fb4651c157d7dfabeea9.zip
added comment to nonexistent installed pkg script
Diffstat (limited to '.scripts')
-rw-r--r--.scripts/find_nonexistent_installed_packages.sh2
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