Skip to content

Commit ef90f86

Browse files
committed
Don't require verification when committing new version
Signed-off-by: Yam Marcovitz <[email protected]>
1 parent c9246d1 commit ef90f86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def there_are_pending_git_changes() -> bool:
139139

140140

141141
def commit_version(version: str) -> bool:
142-
status, _ = subprocess.getstatusoutput(f"git commit -am 'Release {version}'")
142+
status, _ = subprocess.getstatusoutput(f"git commit -am 'Release {version}' --no-verify")
143143
return status != 0
144144

145145

0 commit comments

Comments
 (0)