action/test2
author Paul Crowley <paul@lshift.net>
Wed, 02 Dec 2009 18:52:02 +0000
changeset 267 4f24892b33fe
parent 266 7cc208cbf2be
child 268 24145a4eb6fc
permissions -rwxr-xr-x
Evil hack: make it so it instead uses the Debian package.

#!/bin/sh

set -e

cd

cat > .ssh/config <<__END__
Host chroothg
Hostname localhost
User hg
Port 2222
__END__

hg clone ssh://chroothg/real/project
cd project
echo "and I'm adding something" >> content
hg commit -u test2 -m "Added something to the file"
hg push