We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba4f8e6 commit 451d8d5Copy full SHA for 451d8d5
scripts/update_changelog.py
@@ -165,14 +165,17 @@ def main():
165
for pull in pulls_missing_semver_label)))
166
raise Exception(error_message)
167
168
- print('before:')
169
- print(local_repo.git.status())
+ # print('before:')
+ # print(local_repo.git.status())
170
171
local_repo.git.add(CHANGELOG_PATH)
172
local_repo.git.add(LIBRARY_FILE_PATH)
173
174
- print('after:')
175
+ # print('after:')
176
+
177
+ print('diff:')
178
+ print(local_repo.git.diff('--cached'))
179
180
if __name__ == '__main__':
181
main()
0 commit comments