[ARVADOS] updated: 2a4e0d9bd4e46af87861c1b80e83a00cd99de399
git at public.curoverse.com
git at public.curoverse.com
Wed Aug 13 16:47:55 EDT 2014
Summary of changes:
docker/build_tools/config.rb | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
via 2a4e0d9bd4e46af87861c1b80e83a00cd99de399 (commit)
from c7de9feacdd0803cbc4b93db44a9dc5652b7a755 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 2a4e0d9bd4e46af87861c1b80e83a00cd99de399
Author: Tom Clegg <tom at curoverse.com>
Date: Wed Aug 13 16:47:50 2014 -0400
3551: Use FileUtils.rm_r so deleting stale generated/{dir} works.
diff --git a/docker/build_tools/config.rb b/docker/build_tools/config.rb
index cee72cf..24d6ccb 100755
--- a/docker/build_tools/config.rb
+++ b/docker/build_tools/config.rb
@@ -40,9 +40,7 @@ else
globdir = '*'
end
-Dir.glob(globdir + '/generated/*') do |stale_file|
- File.delete(stale_file)
-end
+FileUtils.rm_r Dir.glob(globdir + '/generated/*')
File.umask(022)
Dir.glob(globdir + '/*.in') do |template_file|
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list