aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSasha Levin <sasha.levin@oracle.com>2016-06-21 09:32:00 -0400
committerSasha Levin <sasha.levin@oracle.com>2016-06-21 09:32:18 -0400
commit54342d9960d1bb2fd87198648f25fcc7fb471927 (patch)
treea7ca0001fb169e76f070f9415f7f7e2dffe01a60
parentaa58ec996aa8f698dd716081d17795c639b157d1 (diff)
downloadstable-tools-54342d9960d1bb2fd87198648f25fcc7fb471927.tar.gz
common: we don't need to check for stable tags in check_relevant
As commits without stable tags might still be stable material... Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
-rw-r--r--common4
1 files changed, 0 insertions, 4 deletions
diff --git a/common b/common
index e08ecb6..bdb6044 100644
--- a/common
+++ b/common
@@ -5,10 +5,6 @@ function check_relevant {
maj=0
min=0
- if [ $(git show $cmt | grep -i 'stable@vger' | wc -l) -eq "0" ]; then
- return 0
- fi
-
# Let's grab the commit that this commit fixes (if exists (based on the "Fixes:" tag)).
fixescmt=`git log -1 $cmt | grep -i "fixes:" | head -n 1 | sed -e 's/^[ \t]*//' | cut -f 2 -d ':' | sed -e 's/^[ \t]*//' | cut -f 1 -d ' '`