From d0474ccd9257c1992a6014f5e4a3c82caa2f4c45 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 28 Oct 2021 16:29:20 +0100 Subject: [PATCH] make-release: note which channel the build will be released into --- build/make-release.php | 1 + 1 file changed, 1 insertion(+) diff --git a/build/make-release.php b/build/make-release.php index ea334e04d..90961c392 100644 --- a/build/make-release.php +++ b/build/make-release.php @@ -111,6 +111,7 @@ function main() : void{ $channel = $filteredOpts["channel"] ?? VersionInfo::BUILD_CHANNEL; echo "About to tag version $currentVer. Next version will be $nextVer.\n"; + echo "$currentVer will be published on release channel \"$channel\".\n"; echo "please add appropriate notes to the changelog and press enter..."; fgets(STDIN); system('git add "' . dirname(__DIR__) . '/changelogs"');