Magellan Linux

Contents of /alx-src/trunk/kernel26-alx/tag-config.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1571 - (show annotations) (download) (as text)
Wed Oct 13 17:21:15 2010 UTC (13 years, 6 months ago) by niro
File MIME type: application/x-sh
File size: 561 byte(s)
-added config tag script
1 #!/bin/bash
2 export LC_ALL=C
3
4 usage()
5 {
6 echo "Usage: $(basename $0) TAG [MESSAGE]"
7 echo
8 echo "Message is optional, you must run this script within a svn tree."
9 echo
10 exit 1
11 }
12
13 TAG="$1"
14 MESSAGE="$2"
15 [[ -z ${TAG} ]] && usage
16 [[ -z ${Message} ]] && MESSAGE="tagged '${TAG}'"
17
18 URI="$(svn info | grep 'URL:' | cut -d' ' -f2)"
19 [[ $? -ne 0 ]] && usage
20 REPO_ROOT="$(svn info | grep 'Repository Root:' | cut -d' ' -f3)"
21 [[ $? -ne 0 ]] && usage
22
23 echo "tagging ${URI}/config with '${TAG}'..."
24 svn copy -m "${MESSAGE}" "${URI}/config" "${REPO_ROOT}/alx-src/tags/${TAG}"