changeset 1962 | 2a676ad52c22 |
parent 1927 | 397b62d5dd13 |
child 2438 | a765f853439d |
1961:eff46e2c9d67 | 1962:2a676ad52c22 |
---|---|
1 #!/bin/sh |
1 #!/bin/sh |
2 |
2 |
3 hg clone http://localhost:20059/ copy |
3 hg clone http://localhost:20059/ copy |
4 echo $? |
4 echo $? |
5 ls copy |
5 ls copy 2>/dev/null || echo copy: No such file or directory |
6 |
6 |
7 cat > dumb.py <<EOF |
7 cat > dumb.py <<EOF |
8 import BaseHTTPServer, SimpleHTTPServer, signal |
8 import BaseHTTPServer, SimpleHTTPServer, signal |
9 |
9 |
10 def run(server_class=BaseHTTPServer.HTTPServer, |
10 def run(server_class=BaseHTTPServer.HTTPServer, |