From c655b7e74b450f0ed004e01bbf0c845dc7193eb5 Mon Sep 17 00:00:00 2001 From: Zach Borboa Date: Fri, 23 Sep 2022 15:07:51 -0700 Subject: [PATCH] Update script path --- scripts/update_changelog.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/update_changelog.py b/scripts/update_changelog.py index 4742821..ca7a94b 100644 --- a/scripts/update_changelog.py +++ b/scripts/update_changelog.py @@ -117,13 +117,13 @@ def main(): php_file_path = '' if pull_request_by_type.get('major'): highest_semantic_version = 'major' - php_file_path = './bump_major_version.php' + php_file_path = 'scripts/bump_major_version.php' elif pull_request_by_type.get('minor'): highest_semantic_version = 'minor' - php_file_path = './bump_minor_version.php' + php_file_path = 'scripts/bump_minor_version.php' elif pull_request_by_type.get('patch'): highest_semantic_version = 'patch' - php_file_path = './bump_patch_version.php' + php_file_path = 'scripts/bump_patch_version.php' print('highest_semantic_version: {}'.format(highest_semantic_version)) # Bump version and get next semantic version.