Skip to content

Commit 50d10e0

Browse files
BillCarsonFrbmarty
andauthored
Review: fix typo
Co-authored-by: Benoit Marty <benoit@matrix.org>
1 parent 1bdc003 commit 50d10e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release_crypto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def get_git_hash(directory: str) -> str:
6464
def commit_and_push_changes(directory: str, message: str):
6565
try:
6666
subprocess.run(["git", "add", "buildSrc/src/main/kotlin/BuildVersionsCrypto.kt"], cwd=directory, check=True)
67-
subprocess.run(["git", "add", "crypto/crypto-android/src/main/kotlin/org/matrix/rustcomponents/sdk/crypto/matrix_sdk_crypto_ffi.ktt"], cwd=directory, check=True)
67+
subprocess.run(["git", "add", "crypto/crypto-android/src/main/kotlin/org/matrix/rustcomponents/sdk/crypto/matrix_sdk_crypto_ffi.kt"], cwd=directory, check=True)
6868
subprocess.run(["git", "commit", "-m", message], cwd=directory, check=True)
6969
subprocess.run(["git", "push"], cwd=directory, check=True)
7070
print("Changes committed and pushed successfully.")

0 commit comments

Comments
 (0)