]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blame - scripts/tag_stable
scripts/bad_stable: allow multiple kernel versions at the same time
[thirdparty/kernel/stable-queue.git] / scripts / tag_stable
CommitLineData
b5bfacc5
GKH
1#!/bin/bash
2
3if [ $# -ne 1 ]; then
4 echo -e "Usage:\t $0 release_number\ne.g.\t $0 2.6.11.12"
5 exit 1
6fi
7
8RELEASE=$1
9echo "tagging stable release $RELEASE"
10echo "[ret] to continue ^C to quit"
11read
12
13
14# tag it
15#git tag -u kroah.com -m "This is the $RELEASE stable release" v$RELEASE
16git tag -u 6092693E -m "This is the $RELEASE stable release" v$RELEASE
17
18exit