Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions xtask/src/cts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ pub fn run_cts(shell: Shell, mut args: Arguments) -> anyhow::Result<()> {
// clones may not have it. Eventually this can be removed.
if shell
.cmd("git")
.args(["config", "get", "remote.origin.fetch"])
.args(["config", "--get", "remote.origin.fetch"])
.quiet()
.ignore_stdout()
.ignore_stderr()
Expand All @@ -91,7 +91,6 @@ pub fn run_cts(shell: Shell, mut args: Arguments) -> anyhow::Result<()> {
.cmd("git")
.args([
"config",
"set",
"remote.origin.fetch",
"+refs/heads/gh-pages:refs/remotes/origin/gh-pages",
])
Expand Down