Skip to content

Commit

Permalink
fix: fix description handling by adding quotes in GitHub repo config
Browse files Browse the repository at this point in the history
  • Loading branch information
GatlenCulp committed Feb 1, 2025
1 parent 3b92e4e commit e4dba05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ccds/hook_utils/configure_vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def configure_github_repo(
f"--{visibility} "
f"--source=. "
f"--remote=origin "
f"--push " + (f"--description {description}" if description else "")
f"--push " + (f"--description '{description}'" if description else "")
)
else:
remote_url = _get_gh_remote_url(github_username, repo_name)
Expand Down

0 comments on commit e4dba05

Please sign in to comment.