commit 6d98b6992b89a90c46daceed05569f9de1a0d298
parent 576cd2ac647ff57ceaa987efa912d2eae224641a
Author: Christian Grothoff <christian@grothoff.org>
Date: Sat, 22 Nov 2025 22:49:28 +0100
-fix path
Diffstat:
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/contrib/bump b/contrib/bump
@@ -23,7 +23,11 @@ function updated {
# update configure.ac
function configure_ac {
- updated configure.ac || return 0
+ if [[ $(grep AC_INIT configure.ac | grep "${VERSION}") ]];
+ then
+ echo "configure.ac already in ${VERSION}"
+ return 0
+ fi
sed -i "/AC_INIT/s/,\\[\\(.*\\)\\],/,[${VERSION}],/" configure.ac
echo "configure.ac ${VERSION}"
diff --git a/src/authorization/anastasis-authorization-sms.sh b/src/authorization/anastasis-authorization-sms.sh
@@ -22,7 +22,7 @@ PROVIDERS="telesign clicksend"
for PROVIDER in $PROVIDERS
do
SCRIPT_PATH="$SCRIPT_DIR/${BASE}-${PROVIDER}.sh"
- if [ -x "$SCRIPT" ]
+ if [ -x "$SCRIPT_PATH" ]
then
if echo "$MESSAGE" | "$SCRIPT_PATH" "$PHONE_NUMBER"
then