chore: in tagging script add cargo lock as well

This commit is contained in:
Gabriele Musco 2024-11-28 07:27:39 +01:00
parent 1bd34b9ad0
commit 88dea2aa43
No known key found for this signature in database
GPG key ID: 1068D795C80E51DE

View file

@ -109,7 +109,7 @@ if __name__ == "__main__":
print(f"Will commit with the following message: '{commitmsg}'")
if not yes_no():
sys.exit(0)
cmd(["git", "add", "meson.build", "Cargo.toml", METAINFO_PATH])
cmd(["git", "add", "meson.build", "Cargo.toml", "Cargo.lock", METAINFO_PATH])
cmd(["git", "commit", "-m", commitmsg])
print(f"Will add tag '{tag}'")
if not yes_no():