view tests/filtertmp.py @ 11917:b03cf2349a80

tests: unify test-install
author Pradeepkumar Gayam <in3xes@gmail.com>
date Tue, 17 Aug 2010 17:48:59 +0530
parents b26c4a89a143
children
line wrap: on
line source

#!/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)