Remove quotes from command line argument lists
This commit is contained in:
+2
-2
@@ -128,13 +128,13 @@ def bump_version() -> None:
|
||||
subprocess.run([
|
||||
'git', 'commit',
|
||||
'--all',
|
||||
f"--message='Bump version: v{new_version}'",
|
||||
f"--message=Bump version: v{new_version}",
|
||||
], check=True)
|
||||
|
||||
subprocess.run([
|
||||
'git', 'tag',
|
||||
'--annotate',
|
||||
f"--message='v{new_version}'",
|
||||
f"--message=v{new_version}",
|
||||
f'v{new_version}',
|
||||
], check=True)
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ def main():
|
||||
'gh', 'pr', 'create',
|
||||
'--repo=joerick/cibuildwheel',
|
||||
'--base=master',
|
||||
"--title='Update dependencies'",
|
||||
"--title=Update dependencies",
|
||||
f"--body='{body}'",
|
||||
],
|
||||
check=True
|
||||
|
||||
Reference in New Issue
Block a user