[ARVADOS] updated: b00bc4b607cbd1eeb9cf749dc8b681e48002e2bc

git at public.curoverse.com git at public.curoverse.com
Tue Aug 12 13:16:07 EDT 2014


Summary of changes:
 crunch_scripts/decompress-all.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

       via  b00bc4b607cbd1eeb9cf749dc8b681e48002e2bc (commit)
      from  20b2859d2e4114b7224fa55d04d98a0fe3e16ef5 (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 b00bc4b607cbd1eeb9cf749dc8b681e48002e2bc
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date:   Tue Aug 12 13:16:04 2014 -0400

    Fix regular expression in decompress-all.py  refs #3373

diff --git a/crunch_scripts/decompress-all.py b/crunch_scripts/decompress-all.py
index cb4a433..c1e1e82 100755
--- a/crunch_scripts/decompress-all.py
+++ b/crunch_scripts/decompress-all.py
@@ -46,7 +46,7 @@ if streamname != None:
 else:
     streamname = '.'
 
-m = re.match(r'\.(gz|Z|bz2|tgz|tbz|zip|rar|7z|cab|deb|rpm|cpio|gem)$', arvados.get_task_param_mount('input'), re.IGNORECASE)
+m = re.match(r'.*\.(gz|Z|bz2|tgz|tbz|zip|rar|7z|cab|deb|rpm|cpio|gem)$', arvados.get_task_param_mount('input'), re.IGNORECASE)
 
 if m != None:
     rc = subprocess.call(["dtrx", "-r", "-n", "-q", arvados.get_task_param_mount('input')])

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list