diff options
author | Scott Moser <smoser@ubuntu.com> | 2013-04-09 17:57:41 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2013-04-09 17:57:41 -0400 |
commit | 90a6bbda5c181569a969edb0d191d19b6110755b (patch) | |
tree | 7ae3e5e7d0fdd0f2e6e524016b799d39c0abc637 /tools/make-dist-tarball | |
parent | 19b11d7e269360880d11d883a59b80b2909cee0f (diff) | |
download | vyos-cloud-init-90a6bbda5c181569a969edb0d191d19b6110755b.tar.gz vyos-cloud-init-90a6bbda5c181569a969edb0d191d19b6110755b.zip |
tools: fix [some] shell quoting problems
There were problems with these tools if the path had a space. This should
make these tools safe. There are others that still have problems.
Diffstat (limited to 'tools/make-dist-tarball')
-rwxr-xr-x | tools/make-dist-tarball | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/tools/make-dist-tarball b/tools/make-dist-tarball index 7742caea..5b078515 100755 --- a/tools/make-dist-tarball +++ b/tools/make-dist-tarball @@ -10,16 +10,12 @@ EOF } topdir="$PWD" -tag=${1} +tag="$1" [ -n "$tag" ] || { Usage 1>&2 ; exit 1; } -tmpd=$(mktemp -d ); -trap "rm -Rf '${tmpd}'" 0 +out="${topdir}/cloud-init-${tag}.tar.gz" -out=${topdir}/cloud-init-${tag}.tar.gz - -cd ${tmpd} && - bzr branch -r "tag:${tag}" "${topdir}" ./cloud-init-${tag} && - tar czf "${out}" cloud-init-${tag}/ --exclude cloud-init-${tag}/.bzr && - echo "Wrote ${out}" +bzr export --format=tgz --root="cloud-init-$tag" \ + "--revision=tag:${tag}" "$out" "$topdir" && + echo "Wrote ${out}" |