test-encode: Use tr chacter classes instead of character ranges

Solaris ...
This commit is contained in:
Mads Kiilerich 2010-01-23 02:03:42 +01:00
parent 18f51e69c3
commit 6240e17232

View File

@ -4,11 +4,11 @@ hg init
cat > .hg/hgrc <<EOF
[encode]
not.gz = tr a-z A-Z
not.gz = tr [:lower:] [:upper:]
*.gz = gzip -d
[decode]
not.gz = tr A-Z a-z
not.gz = tr [:upper:] [:lower:]
*.gz = gzip
EOF