Author: Lars Michelsen <[email protected]> Date: Sat Feb 26 14:39:02 2011 +0100 Committer: Lars Michelsen <[email protected]> Commit-Date: Sat Feb 26 13:39:02 2011 +0000
Updated metafiles --- .gitignore | 1 + pack | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 3f39dde..2de3992 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.bak *.swp *~ +*.tar.gz .metadata uifx/.settings uifx/.actionScriptProperties diff --git a/pack b/pack new file mode 100755 index 0000000..9f61885 --- /dev/null +++ b/pack @@ -0,0 +1,24 @@ +#!/bin/bash +case "$1" in + 1.6|trunk) + V=1.6 + BRANCH=master + ;; + 1.5) + V=1.5 + BRANCH=nagvis-1.5 + ;; + 1.4) + V=1.4 + BRANCH=nagvis-1.4 + ;; + *) + echo "ERROR: No param given." + exit 1 + ;; +esac + +PREFIX="nagvis-$V-nightly" +ARCH="$PREFIX.tar.gz" +git archive --prefix=$PREFIX/ refs/heads/$BRANCH | gzip > $ARCH +echo "Output: $ARCH" ------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
