Skip to content
Snippets Groups Projects
Commit da6693cce635 authored by kiilerix's avatar kiilerix
Browse files

tests: remove filtertmp.py and helpers.sh

These nice starts ended up being replaced with globs.
parent 6cc4b14fb76b
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
#
# This used to be a simple sed call like:
#
# $ sed "s:$HGTMP:*HGTMP*:"
#
# But $HGTMP has ':' under Windows which breaks the sed call.
#
import sys, os
input = sys.stdin.read()
input = input.replace(os.sep, '/')
hgtmp = os.environ['HGTMP'].replace(os.sep, '/')
input = input.replace(hgtmp, '$HGTMP')
sys.stdout.write(input)
#/bin/sh
hideport() { sed "s/localhost:$HGPORT/localhost:\$HGPORT/"; }
repr() { python -c "import sys; print repr(sys.stdin.read()).replace('\\n', '\n')"; }
hidehex() { python -c 'import sys, re; print re.replace("\b[0-9A-Fa-f]{12,40}", "X" * 12)'; }
hidetmp() { sed "s/$HGTMP/\$HGTMP/"; }
hidebackup() { sed 's/\(saved backup bundle to \).*/\1/'; }
cleanrebase() {
sed -e 's/\(Rebase status stored to\).*/\1/' \
-e 's/\(Rebase status restored from\).*/\1/' \
-e 's/\(saved backup bundle to \).*/\1/';
}
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