summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe <joe@joelightning.com>2011-03-07 22:12:03 +0000
committerJoe <joe@joelightning.com>2011-03-07 22:12:03 +0000
commitd4c56af4eea1b98fef694120becd3cf0b66a5570 (patch)
tree921cc0f7419846088f6a34d53308e7d0a2d3ab35
parent670ec0f6997c2e93ea09148b2163d18a5f8b8652 (diff)
English grammar fix. Added a comment.
-rwxr-xr-xarch2parabola8
1 files changed, 5 insertions, 3 deletions
diff --git a/arch2parabola b/arch2parabola
index a5c909c..87622ff 100755
--- a/arch2parabola
+++ b/arch2parabola
@@ -233,9 +233,9 @@ section="---------- Package Replacement ----------"
log_section
cat << EOF
-* Pacman cache will be erased
-* Pacman database will be updated for parabola
-* Non free packages that have free replacement will be Synced
+* Pacman's cache will be erased
+* Pacman's database will be updated for parabola
+* Non free packages that have free replacements will be replaced
Do you wish to continue? [y/n]
EOF
@@ -278,6 +278,8 @@ if_cancelled
# Remove the packages that don't have free replacements.
for package in ${exists[@]}
do
+ # Pacman's `-c' option means that all packages that depend on the removed
+ # package will be uninstalled.
pacman -Rc --noconfirm ${package} >> ${logname} 2>> ${logname} || abort
done