aboutsummaryrefslogtreecommitdiff
path: root/kiss
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2019-07-26 16:21:43 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2019-07-26 16:21:43 +0000
commitdbd670e10e10865362e708695862f26e7a07faad (patch)
tree19dd2dc88b68f8e99fc50101512bf2d81a842a31 /kiss
parentf633ba320d8b5af92eac876c75d722a9ee424bea (diff)
downloadcpt-dbd670e10e10865362e708695862f26e7a07faad.tar.gz
docs: update
FossilOrigin-Name: 96fb4a7c12e62543fe22dbdf66594f2933e00f9a60e0afe7dfafb4728b84c1af
Diffstat (limited to 'kiss')
-rwxr-xr-xkiss6
1 files changed, 3 insertions, 3 deletions
diff --git a/kiss b/kiss
index 5d86488..cf3d97c 100755
--- a/kiss
+++ b/kiss
@@ -600,8 +600,8 @@ pkg_remove() {
die "[$1]: Package is required by ${required_by%, }." \
"[$1]: Aborting here..."
- # Block being able to abort the script with 'Ctrl+C' during installation.
- # Removes all risk of the user aborting a package installation leaving
+ # Block being able to abort the script with 'Ctrl+C' during removal.
+ # Removes all risk of the user aborting a package removal leaving
# an incomplete package installed.
trap '' INT
@@ -618,7 +618,7 @@ pkg_remove() {
fi
done < "$KISS_ROOT/$pkg_db/$1/manifest"
- # Reset 'trap' to its original value. Installation is done so
+ # Reset 'trap' to its original value. Removal is done so
# we no longer need to block 'Ctrl+C'.
trap pkg_clean EXIT INT