Fix logic to update version when HEAD changes. (#10896)
This commit is contained in:
parent
6f1437e9f3
commit
886d307b9e
1 changed files with 2 additions and 0 deletions
|
@ -50,6 +50,7 @@ fn main() {
|
|||
.ok()
|
||||
.filter(|output| output.status.success())
|
||||
.and_then(|x| String::from_utf8(x.stdout).ok())
|
||||
.map(|x| x.trim().to_string())
|
||||
else {
|
||||
return;
|
||||
};
|
||||
|
@ -67,6 +68,7 @@ fn main() {
|
|||
.ok()
|
||||
.filter(|output| output.status.success())
|
||||
.and_then(|x| String::from_utf8(x.stdout).ok())
|
||||
.map(|x| x.trim().to_string())
|
||||
else {
|
||||
return;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue