changeset 108:6e2801ed68a1 easyhg_kdiff3_simplifications

Add archiving script, minor README update
author Chris Cannam
date Thu, 26 May 2011 11:03:06 +0100
parents b2f15a7c66cc
children 84ce1ddf7a48
files README.txt make-archive.sh
diffstat 2 files changed, 13 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/README.txt	Thu May 26 10:53:18 2011 +0100
+++ b/README.txt	Thu May 26 11:03:06 2011 +0100
@@ -14,9 +14,7 @@
 
 Thus:
 
- * Clone this repository
-
- * hg update easyhg_kdiff3_simplifications
+ * if starting from repository: hg update easyhg_kdiff3_simplifications
 
  * cd kdiff3/src-QT4
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/make-archive.sh	Thu May 26 11:03:06 2011 +0100
@@ -0,0 +1,12 @@
+#!/bin/bash
+v="$1"
+if [ -z "$v" ]; then
+    echo "Usage: $0 <version>"
+    echo "where <version> is the corresponding KDiff3-EasyHg version number"
+    exit 2
+fi
+hg archive -r easyhg_kdiff3_simplifications \
+    -I README.txt -I kdiff3/src-QT4 -I kdiff3/AUTHORS -I kdiff3/COPYING \
+    "kdiff3-for-easyhg-$v.tar.gz"
+
+