Skip to content

Commit

Permalink
Fix #2
Browse files Browse the repository at this point in the history
  • Loading branch information
RikkaW committed Feb 13, 2021
1 parent c88a4dd commit ae296b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions template/magisk_module/customize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ if [ "$ARCH" = "x86" ] || [ "$ARCH" = "x64" ]; then

if [ "$IS64BIT" = true ]; then
ui_print "- Extracting x64 libraries"
extract "$ZIPFILE" "system_x86/lib64/libriru_$RIRU_MODULE_ID.so" "$MODPATH"
extract "$ZIPFILE" "lib/x86_64/libriru_$RIRU_MODULE_ID.so" "$MODPATH"
mv "$MODPATH/lib/x86_64" "$MODPATH/system/lib64"
extract "$ZIPFILE" "system_x86/lib64/libstarter.so" "$ROOT_PATH" true
extract "$ZIPFILE" "lib/x86_64/libstarter.so" "$ROOT_PATH" true
else
extract "$ZIPFILE" "system_x86/lib/libstarter.so" "$ROOT_PATH" true
extract "$ZIPFILE" "lib/x86/libstarter.so" "$ROOT_PATH" true
fi
fi

Expand Down

0 comments on commit ae296b2

Please sign in to comment.