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

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

Solaris ...
parent 17c6d5ea
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
cat > .hg/hgrc <<EOF
[encode]
not.gz = tr a-z A-Z
not.gz = tr [:lower:] [:upper:]
*.gz = gzip -d
[decode]
......@@ -8,7 +8,7 @@
*.gz = gzip -d
[decode]
not.gz = tr A-Z a-z
not.gz = tr [:upper:] [:lower:]
*.gz = gzip
EOF
......
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