Use more compatible `cmd` instead of $(cmd) in test-http-proxy
authorThomas Arendsen Hein <thomas@intevation.de>
Fri, 30 Jun 2006 21:41:24 +0200
changeset 2542 a20877c8a3e2
parent 2541 14dff1dacabe
child 2543 860e9c83fc59
Use more compatible `cmd` instead of $(cmd) in test-http-proxy
tests/test-http-proxy
--- a/tests/test-http-proxy
+++ b/tests/test-http-proxy
@@ -26,5 +26,5 @@ http_proxy=http://user:passwd@localhost:
 echo %% bad host:port for proxy
 http_proxy=localhost:20061 hg clone --config http_proxy.always=True http://localhost:20059/ f
 
-kill $(cat proxy.pid a/hg.pid)
+kill `cat proxy.pid a/hg.pid`
 exit 0