Skip to content

Commit

Permalink
ports-mgmt/portmaster: Fix syntax error introduced in last commit
Browse files Browse the repository at this point in the history
A last minute change from "case" to "if" caused a syntax error since
I had forgotten to remove a now stray ";;" ...

Reported by:	bsd@dino.sk
  • Loading branch information
stesser committed Jul 9, 2021
1 parent dd1d533 commit 22b2619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ports-mgmt/portmaster/Makefile
@@ -1,6 +1,6 @@
PORTNAME= portmaster
PORTVERSION= 3.19
PORTREVISION= 29
PORTREVISION= 30
CATEGORIES= ports-mgmt

MAINTAINER= se@FreeBSD.org
Expand Down
2 changes: 1 addition & 1 deletion ports-mgmt/portmaster/files/patch-portmaster
Expand Up @@ -39,7 +39,7 @@

: ${PAGER:='less -e'}
+ if [ -n "$PM_NO_CONFIRM" ]; then
+ PAGER=cat ;;
+ PAGER=cat
+ fi
(
- pkg query "===>>> pkg-message for %n-%v\n%M" $DISPLAY_LIST
Expand Down

0 comments on commit 22b2619

Please sign in to comment.