From 6e3813cb78c62a93b2ed54217b3491d7b5e5d60f Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Wed, 8 Oct 2025 12:18:17 -0700 Subject: [PATCH] Remove absolute path reference to ~/pbot --- applets/compliment | 2 +- applets/horoscope | 2 +- lib/PBot/VERSION.pm | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/applets/compliment b/applets/compliment index 52aa51da..a9fa9338 100755 --- a/applets/compliment +++ b/applets/compliment @@ -1,4 +1,4 @@ #!/bin/sh # SPDX-FileCopyrightText: 2009-2023 Pragmatic Software # SPDX-License-Identifier: MIT -~/pbot/applets/lookupbot.pl compliment "$*" +./lookupbot.pl compliment "$*" diff --git a/applets/horoscope b/applets/horoscope index 0f27a4a2..3743ccee 100755 --- a/applets/horoscope +++ b/applets/horoscope @@ -1,4 +1,4 @@ #!/bin/sh # SPDX-FileCopyrightText: 2009-2023 Pragmatic Software # SPDX-License-Identifier: MIT -~/pbot/applets/lookupbot.pl horoscope "$*" +./lookupbot.pl horoscope "$*" diff --git a/lib/PBot/VERSION.pm b/lib/PBot/VERSION.pm index 3253eb29..b55416d2 100644 --- a/lib/PBot/VERSION.pm +++ b/lib/PBot/VERSION.pm @@ -25,8 +25,8 @@ use PBot::Imports; # These are set by the /misc/update_version script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 4900, - BUILD_DATE => "2025-10-05", + BUILD_REVISION => 4903, + BUILD_DATE => "2025-10-08", }; sub initialize {}