[openstack-dev] [TripleO] fix poor tarball support in source-repositories
Clint Byrum
clint at fewbar.com
Sat Aug 16 14:33:20 UTC 2014
Excerpts from Jyoti Ranjan's message of 2014-08-16 00:57:52 -0700:
> We will have to be little bit cautious in using glob because of its
> inherent usage pattern. For e.g. the file starting with . will not get
> matched.
>
That is a separate bug, but I think the answer to that is to use rsync
instead of mv and globs. So this:
mv $tmp/./* $destdir
becomes this:
rsync --remove-source-files $tmp/. $destdir
More information about the OpenStack-dev
mailing list