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