aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/release.rs
diff options
context:
space:
mode:
authorLaurenČ›iu Nicola <[email protected]>2021-02-08 14:20:42 +0000
committerLaurenČ›iu Nicola <[email protected]>2021-02-09 14:52:44 +0000
commitc0ff61c4b9290fdb810bd37ec77c43ee66256691 (patch)
tree742aa547b01f871e7516b8146fc4939494ee89f6 /xtask/src/release.rs
parent336909b63a14b801520c6627d90d750babcfe280 (diff)
Track remote branch on xtask promote
Diffstat (limited to 'xtask/src/release.rs')
-rw-r--r--xtask/src/release.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/release.rs b/xtask/src/release.rs
index 2d716253e..93079b369 100644
--- a/xtask/src/release.rs
+++ b/xtask/src/release.rs
@@ -99,7 +99,7 @@ impl PromoteCmd {
99 cmd!("git add src/tools/rust-analyzer").run()?; 99 cmd!("git add src/tools/rust-analyzer").run()?;
100 cmd!("git commit -m':arrow_up: rust-analyzer'").run()?; 100 cmd!("git commit -m':arrow_up: rust-analyzer'").run()?;
101 if !self.dry_run { 101 if !self.dry_run {
102 cmd!("git push").run()?; 102 cmd!("git push -u").run()?;
103 cmd!("xdg-open https://github.com/matklad/rust/pull/new/{branch}?body=r%3F%20%40ghost") 103 cmd!("xdg-open https://github.com/matklad/rust/pull/new/{branch}?body=r%3F%20%40ghost")
104 .run()?; 104 .run()?;
105 } 105 }