From 73227634c778fa08d06addda7206d0ed8950a553 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Mon, 12 Apr 2021 03:33:07 +0200 Subject: [PATCH] fix: use a fixed PHP binary for make tag get version --- scripts/tag-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tag-release.sh b/scripts/tag-release.sh index 288c4f16..7b52c169 100755 --- a/scripts/tag-release.sh +++ b/scripts/tag-release.sh @@ -19,7 +19,7 @@ function get_version { fi } -get_version ./bin/doctum.php +get_version "${PHP_BIN:-php} ./bin/doctum.php" echo "Version: ${VERSION}"