From fd168ac31e13ccc0bdf8fa9f7b00637aeae6ad0e Mon Sep 17 00:00:00 2001 From: Paul Keith Date: Fri, 7 Apr 2017 15:46:15 -0500 Subject: [PATCH] build: Strip | character in addon.d generation * Previously, files that were pinned and weren't presigned wouldn't have the sha1sum stripped from the name of the blob * n.b. This only affected libjni_latinimegoogle.so Signed-off-by: Paul Keith --- build/gapps.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build/gapps.sh b/build/gapps.sh index 223c24d..f32bf9f 100755 --- a/build/gapps.sh +++ b/build/gapps.sh @@ -64,6 +64,7 @@ function create() { do if [ "$l" != "" ]; then line=$(echo "$l" | sed 's/^-//g') + line=${line%%|*} line=${line%%:*} echo "$line" >> $ADDOND.tmp fi