summaryrefslogtreecommitdiff
path: root/lib/subunit/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/subunit/update.sh')
-rwxr-xr-xlib/subunit/update.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/subunit/update.sh b/lib/subunit/update.sh
deleted file mode 100755
index f8265b188c..0000000000
--- a/lib/subunit/update.sh
+++ /dev/null
@@ -1,16 +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/tap2subunit;
-do
- rsync -avz --delete "$WORKDIR/subunit/$p" "$TARGETDIR/$p"
-done
-
-rsync -avz --delete "$WORKDIR/testtools/testtools/" "$TARGETDIR/python/testtools/"
-
-rm -rf "$WORKDIR"