You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FAILED: out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk
/bin/bash -c "(rm -f out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk ) && (cp \"vendor/opengapps/sources/all/app/com.google.android.markup/29/nodpi/29.apk\" \"out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk\" ) && (if (zipinfo out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then out/soong/host/linux-x86/bin/zip2zip -i out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk -o out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk.tmp -0 'lib/**/*.so' && mv -f out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk.tmp out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk ; fi ) && (if ! out/host/linux-x86/bin/zipalign -c 4 out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk >/dev/null ; then mv out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk.unaligned; out/host/linux-x86/bin/zipalign -f -p 4 out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk.unaligned out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk.aligned; mv out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk.aligned out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk; fi )"
Unable to open 'out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk' for verification
Unable to open 'out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk.unaligned' as zip archive
mv: bad 'out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk.aligned': No such file or directory
This happens further for other packages as well. As I tried to understand what was happening, it looks like the failure is because of escape sequence wrapping of double-quotes. So, rm and cp are failing (I tried to execute each command in that mega command).
$ cp \"vendor/opengapps/sources/all/app/com.google.android.markup/29/nodpi/29.apk\" \"out/target/product/coral/obj/APPS/MarkupGoogle_intermediates/package.apk\"
cp: cannot stat '"vendor/opengapps/sources/all/app/com.google.android.markup/29/nodpi/29.apk"': No such file or directory
Am I doing something wrong here?
The text was updated successfully, but these errors were encountered:
This happens further for other packages as well. As I tried to understand what was happening, it looks like the failure is because of escape sequence wrapping of double-quotes. So,
rm
andcp
are failing (I tried to execute each command in that mega command).Am I doing something wrong here?
The text was updated successfully, but these errors were encountered: