Unverified Commit 1e277553 authored by Mykola Krachkovsky's avatar Mykola Krachkovsky Committed by GitHub

fix(svn): fix sed call in `svn_get_rev_nr` (#10590)

parent 035c856c
......@@ -55,7 +55,7 @@ svn_get_branch_name() {
}
svn_get_rev_nr() {
sed -n 's/Revision:\ //p' "${1:-$(LANG= svn info 2>/dev/null)}"
sed -n 's/Revision:\ //p' <<<"${1:-$(LANG= svn info 2>/dev/null)}"
}
svn_dirty() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment