Commit 9cc91b30 authored by topjohnwu's avatar topjohnwu

Fix #3871

parent e836caf3
...@@ -329,7 +329,7 @@ mount_apex() { ...@@ -329,7 +329,7 @@ mount_apex() {
if [ -f $APEX/apex_manifest.json ]; then if [ -f $APEX/apex_manifest.json ]; then
DEST=/apex/$(sed -n $PATTERN $APEX/apex_manifest.json) DEST=/apex/$(sed -n $PATTERN $APEX/apex_manifest.json)
elif [ -f $APEX/apex_manifest.pb ]; then elif [ -f $APEX/apex_manifest.pb ]; then
DEST=/apex/$(strings apex_manifest.pb | head -n 1) DEST=/apex/$(strings $APEX/apex_manifest.pb | head -n 1)
else else
continue continue
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment