[ARVADOS] created: 1.3.0-219-ge2293bfad

Git user git at public.curoverse.com
Mon Feb 4 16:00:35 EST 2019


        at  e2293bfadfd307d7dd0cac7b70e9b5fa5258defd (commit)


commit e2293bfadfd307d7dd0cac7b70e9b5fa5258defd
Author: Tom Clegg <tclegg at veritasgenetics.com>
Date:   Mon Feb 4 15:58:57 2019 -0500

    14806: Handle escaped chars when parsing docker image manifest.
    
    Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg at veritasgenetics.com>

diff --git a/sdk/cli/bin/crunch-job b/sdk/cli/bin/crunch-job
index b8afe638a..b98df8a66 100755
--- a/sdk/cli/bin/crunch-job
+++ b/sdk/cli/bin/crunch-job
@@ -2156,6 +2156,7 @@ sub find_docker_image {
           return (undef, undef);  # More than one file in the Collection.
         } else {
           $filename = (split(/:/, $filedata, 3))[2];
+          $filename =~ s/\\([0-3][0-7][0-7])/chr(oct($1))/ge;
         }
       }
     }

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list