Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

Commit

Permalink
fix post-fs-data.sh is not copied
Browse files Browse the repository at this point in the history
  • Loading branch information
RikkaW committed May 13, 2019
1 parent 13883b1 commit 11ec6e2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,12 @@ task copyFilesMagiskRelease(type: Copy) {
finalizedBy('copyRiruPropMagiskRelease')

doLast {
file("$zipPathMagiskRelease/common").mkdirs()
file("$zipPathMagiskRelease/system").mkdirs()
file("$zipPathMagiskRelease/system_x86").mkdirs()

file("$zipPathMagiskRelease/post-fs-data.sh").renameTo("$zipPathMagiskRelease/common/post-fs-data.sh")

file("$libPathRelease/arm64-v8a").renameTo("$zipPathMagiskRelease/system/lib64")
file("$libPathRelease/armeabi-v7a").renameTo("$zipPathMagiskRelease/system/lib")
file("$libPathRelease/x86_64").renameTo("$zipPathMagiskRelease/system_x86/lib64")
Expand Down

0 comments on commit 11ec6e2

Please sign in to comment.