Skip to content

Commit f3f723b

Browse files
committed
Corrected ValidationExceptions file placement and updated paths
1 parent f9ae70a commit f3f723b

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Tools/scripts/ReleaseAutomation/release_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ReleaseConfig:
3333
def __init__(self):
3434
self.manifest_path = 'com.unity.netcode.gameobjects/package.json'
3535
self.changelog_path = 'com.unity.netcode.gameobjects/CHANGELOG.md'
36-
self.validation_exceptions_path = './ValidationExceptions.json'
36+
self.validation_exceptions_path = 'com.unity.netcode.gameobjects/ValidationExceptions.json'
3737
self.github_repo = 'Unity-Technologies/com.unity.netcode.gameobjects'
3838
self.default_repo_branch = 'develop' # Changelog and package version change will be pushed to this branch
3939
self.yamato_project_id = '1201'

Tools/scripts/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def make_package_release_ready(manifest_path, changelog_path, validation_excepti
4141
if __name__ == '__main__':
4242
manifest_path = 'com.unity.netcode.gameobjects/package.json'
4343
changelog_path = 'com.unity.netcode.gameobjects/CHANGELOG.md'
44-
validation_exceptions_path = './ValidationExceptions.json'
44+
validation_exceptions_path = 'com.unity.netcode.gameobjects/ValidationExceptions.json'
4545
package_version = get_package_version_from_manifest(manifest_path)
4646

4747
make_package_release_ready(manifest_path, changelog_path, validation_exceptions_path, package_version)
File renamed without changes.

0 commit comments

Comments
 (0)