summaryrefslogtreecommitdiff
path: root/lib/subunit/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/subunit/update.sh')
-rwxr-xr-xlib/subunit/update.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/subunit/update.sh b/lib/subunit/update.sh
deleted file mode 100755
index 1b27ba634c..0000000000
--- a/lib/subunit/update.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-# Pull in a new snapshot of Subunit from the upstream bzr branch
-
-TARGETDIR="`dirname $0`"
-WORKDIR="`mktemp -d`"
-
-bzr export "$WORKDIR/subunit" lp:subunit
-bzr export "$WORKDIR/testtools" lp:testtools
-
-for p in python/ filters/ perl/
-do
- rsync -avz --delete "$WORKDIR/subunit/$p" "$TARGETDIR/$p"
-done
-
-rsync -avz --delete "$WORKDIR/testtools/testtools/" "$TARGETDIR/python/testtools/"
-
-rm -rf "$WORKDIR"