Skip to content

Commit e444a1b

Browse files
update
Reverting last change. Removing a single line of code.
1 parent 07731e5 commit e444a1b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.yamato/package-pack.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ package_pack_-_ngo_{{ platform.name }}:
3737
variables:
3838
XRAY_PROFILE: "gold ./pvpExceptions.json"
3939
commands:
40-
- python Tools/scripts/release.py # Needed to ensure that CHANGELOG is properly formatted for this test due to the fact that we have bumped package version (to properly perform vetting tests)
4140
- upm-pvp pack "com.unity.netcode.gameobjects" --output upm-ci~/packages
4241
- upm-pvp xray --packages "upm-ci~/packages/com.unity.netcode.gameobjects*.tgz" --results pvp-results
4342
- upm-pvp require {% if platform.name == "win" %}"%XRAY_PROFILE%"{% else %}"$XRAY_PROFILE"{% endif %} --results pvp-results --allow-missing

Tools/scripts/Utils/general_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,5 +166,5 @@ def update_changelog(changelog_path, new_version, add_unreleased_template=False)
166166
)
167167

168168
# Write the changes
169-
with open(changelog_path, 'wb', encoding='UTF-8') as file:
169+
with open(changelog_path, 'w', encoding='UTF-8') as file:
170170
file.write(final_content)

0 commit comments

Comments
 (0)