git: c05c52287695 - main - Tools/scripts/rmport: remove an extraneous '$' that sneaked in.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 18 Jun 2025 16:07:59 UTC
The branch main has been updated by rene:
URL: https://cgit.FreeBSD.org/ports/commit/?id=c05c52287695a84b34976dca308b33874520f3d8
commit c05c52287695a84b34976dca308b33874520f3d8
Author: Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-06-18 16:05:08 +0000
Commit: Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-06-18 16:07:42 +0000
Tools/scripts/rmport: remove an extraneous '$' that sneaked in.
Fixes: 297cd655811ca
Event: Kitchener-Waterloo Hackathon 202506
---
Tools/scripts/rmport | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Tools/scripts/rmport b/Tools/scripts/rmport
index 9e4e8d98a712..cca353759fe3 100755
--- a/Tools/scripts/rmport
+++ b/Tools/scripts/rmport
@@ -113,7 +113,7 @@ find_expired()
for port in $(make -C ${PORTSDIR}/${category} -V SUBDIR); do
DATE="$(make -C ${PORTSDIR}/${category}/${port} -V EXPIRATION_DATE)"
# shellcheck disable=SC2039
- if [ -n "${DATE}" ] && [ ! "${DATE}" \> "$${TODAY}" ] ; then
+ if [ -n "${DATE}" ] && [ ! "${DATE}" \> "${TODAY}" ] ; then
if [ "$1" = 1 ] ; then
echo -n "${DATE} ${category}/${port}: "
make -C ${PORTSDIR}/${category}/${port} -V DEPRECATED