From 345778385caa20f8b533417dfc919366203eb70f Mon Sep 17 00:00:00 2001 From: Yahnis Elsts Date: Sat, 20 May 2023 14:20:34 +0300 Subject: [PATCH] Minor: Add a version bump completion message --- build/bump-version.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build/bump-version.php b/build/bump-version.php index 46b77e6..53ec64b 100644 --- a/build/bump-version.php +++ b/build/bump-version.php @@ -117,8 +117,7 @@ file_put_contents($pluginUpdateCheckerFilePath, $content); exec('git add .'); exec("git commit -m \"Bump version number to $newVersion\""); -//Switch back to the original branch. -//exec('git checkout -'); +echo "Version number bumped to $newVersion.\n"; //Switch back to the original directory. chdir($oldDir);