summaryrefslogtreecommitdiff
path: root/pm/pm-functions.in
diff options
context:
space:
mode:
Diffstat (limited to 'pm/pm-functions.in')
-rw-r--r--pm/pm-functions.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/pm/pm-functions.in b/pm/pm-functions.in
index dafde52..4bdb99b 100644
--- a/pm/pm-functions.in
+++ b/pm/pm-functions.in
@@ -86,8 +86,8 @@ remove_parameters() {
for p in "$@"; do
y=""
for x in $PM_CMDLINE; do
- # * removes all parameters.
- [ "$x" = "$p" -o "$p" = "*" ] && {
+ # 'all' removes all parameters.
+ [ "$x" = "$p" -o "$p" = 'all' ] && {
log "Removing parameter $x."
continue
}