Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/build-scripts/jhbuild/scripts/branch-violations/find-branch-violations
diff options
context:
space:
mode:
Diffstat (limited to 'build-scripts/jhbuild/scripts/branch-violations/find-branch-violations')
-rwxr-xr-xbuild-scripts/jhbuild/scripts/branch-violations/find-branch-violations24
1 files changed, 0 insertions, 24 deletions
diff --git a/build-scripts/jhbuild/scripts/branch-violations/find-branch-violations b/build-scripts/jhbuild/scripts/branch-violations/find-branch-violations
deleted file mode 100755
index f711ffc..0000000
--- a/build-scripts/jhbuild/scripts/branch-violations/find-branch-violations
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-if test -z "$1"; then
- echo Usage: find-branch-violations branch
- exit 1
-fi
-
-branch=$1
-
-echo "$branch" |
-grep -q '\.' &&
-branch="gnome-${branch//./-}"
-
-join \
- <( # list of modules defined in jhbuild without branch tag
- "`dirname "$0"`/find-branch-moduleset" "$branch" |
- grep "<cvsmodule" |
- grep -v "$branch" |
- sed 's/.*cvsmodule.*id="\([^"]*\)".*/\1/' |
- sort
- ) \
- <( # list of modules in CVS with branch tag
- "`dirname "$0"`/find-branch-modules" "$branch"
- )