Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac6c853e authored by Alyssa Ketpreechasawat's avatar Alyssa Ketpreechasawat
Browse files

Fix the number of required parameters in deapexer script.

Regarding aosp/2624311, `blkid_path` was removed from the command, so the number of parameters should be reduced by 1.

Test: MODULE_BUILD_FROM_SOURCE=false m (in internal-main branch)
Bug: 279858383
Change-Id: Iad494b757e2a4152a6867098c3eb7419c3bba71b
parent e61a0817
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ set -eu
# limitations under the License.

# Tool to unpack an apex file and verify that the required files were extracted.
if [ $# -lt 7 ]; then
if [ $# -lt 6 ]; then
  echo "usage: $0 <deapaxer_path> <debugfs_path> <fsck.erofs_path> <apex file> <output_dir> <required_files>+" >&2
  exit 1
fi