summaryrefslogtreecommitdiffstats
path: root/scripts/filter-active
blob: f3f253bc9bc08c5be9fd0fe42e4ccbe8df028d38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

#
# For a given set of branch names, display all of the issues that need
# some actual work - i.e., contain non status info, or are marked needed
#
# Example usage: ./filter-active ../active 2.6.8-sarge-security linux-2.6
#

set -e

if [ $# -lt 2 ]; then
  echo "Usage: filter-active <tracker-dir> <branch name> [<branch name>...]"
  exit 1
fi

tdir=$1
shift
bra="$*"

exec "$(dirname "$0")/filter-active.py" -d "$tdir" -b ${bra// / -b } -n{N/A,pending,released,ignored}

© 2014-2024 Faster IT GmbH | imprint | privacy policy