Skip to content
Snippets Groups Projects
Commit c204431b authored by Patrick Mezard's avatar Patrick Mezard
Browse files

test-share: handle sed/GNU-sed discrepancies

parent 9e2ab107
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,8 @@
[ -d .hg/store ] \
&& echo "fail: .hg/store should not exist" \
|| echo "pass: .hg/store does not exist"
cat .hg/sharedpath | sed "s:$HGTMP:*HGTMP*:"; echo
# sed appends a newline to the stream if none, GNU sed does not
sed "s:$HGTMP:*HGTMP*:" .hg/sharedpath | tr -d '\n'; echo
echo % commit in shared clone
echo a >> a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment