smbd: add missing newline to debug message in daemon_ready()
[ira/third_party.git] / update-external.sh
index fc2443b77e6ddd042d2ff0858c00ed41637828da..ea563baeeaa16d6b98d011c752d91161f1ee14b4 100755 (executable)
@@ -7,6 +7,8 @@ WORKDIR="`mktemp -d`"
 
 echo "Updating subunit..."
 bzr export "$WORKDIR/subunit" lp:subunit 
+# Preserve wscript file
+cp "$TARGETDIR/subunit/c/wscript" "$WORKDIR/subunit/c/wscript"
 rsync -avz --delete "$WORKDIR/subunit/" "$TARGETDIR/subunit/"
 
 echo "Updating testtools..."
@@ -18,4 +20,9 @@ git clone git://www.dnspython.org/dnspython.git "$WORKDIR/dnspython"
 rm -rf "$WORKDIR/dnspython/.git"
 rsync -avz --delete "$WORKDIR/dnspython/" "$TARGETDIR/dnspython/"
 
+echo "Updating pep8..."
+git clone git://github.com/jcrocholl/pep8 "$WORKDIR/pep8"
+rm -rf "$WORKDIR/pep8/.git"
+rsync -avz --delete "$WORKDIR/pep8/" "$TARGETDIR/pep8/"
+
 rm -rf "$WORKDIR"