chore(code-update): latest version of v0.3.1 code

* also fixed OSX deployment utility to deal with target folder
  as primary location for build-artifacts

[skip ci]
This commit is contained in:
Sebastian Thiel
2015-06-27 08:50:08 +02:00
parent 337f167e6c
commit 6393bbf7f6
305 changed files with 457 additions and 457 deletions

View File

@@ -7,7 +7,7 @@ tar_basename=google-apis-rs_cli-${version}_osx-10.10_${rtype}
tar_file=${tar_basename}.tar.gz
dest_dir=build/$tar_basename
mkdir -p $dest_dir || exit $?
find -E gen -perm +0111 -type f -path "*/${rtype}/*" -not \( -name "*.*" -or -name "*script*" -or -regex ".*-[a-f0-9]{16}" \) | xargs -J % cp -v % $dest_dir || exit $?
find -E target -perm +0111 -type f -path "*/${rtype}/*" -not \( -name "*.*" -or -name "*script*" -or -regex ".*-[a-f0-9]{16}" \) | xargs -J % cp -v % $dest_dir || exit $?
(cd $dest_dir && tar -czvf ../${tar_file} `find . -perm +0111 -type f`) || exit $?
rm -Rfv $dest_dir || exit $?
echo Wrote build/$tar_file