From 91770eb78f30bea931bafa8d07b4f7f41193185b Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Fri, 28 Feb 2014 16:19:19 -0500 Subject: tools/make-tarball: add ability to include uncommited changes if you have UNCOMMITTED=1 in environment then the tree will contain uncommitted changes. --- tools/make-tarball | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/make-tarball b/tools/make-tarball index 27f5f374..b7039150 100755 --- a/tools/make-tarball +++ b/tools/make-tarball @@ -27,7 +27,13 @@ else ARCHIVE_FN="$PWD/cloud-init-$VERSION~bzr$REVNO.tar.gz" fi -bzr export --format=tgz --root="cloud-init-$VERSION~bzr$REVNO" \ +export_uncommitted="" +if [ "${UNCOMMITTED:-0}" != "0" ]; then + export_uncommitted="--uncommitted" +fi + +bzr export ${export_uncommitted} \ + --format=tgz --root="cloud-init-$VERSION~bzr$REVNO" \ "--revision=${REVNO}" "${ARCHIVE_FN}" "$ROOT_DIR" echo "$ARCHIVE_FN" -- cgit v1.2.3