Fix the issue of Can't find \android\app${assetsDirectory} #50913 (#51158)

This commit is contained in:
shihchanghsiungsonos 2020-02-22 16:06:01 -08:00 committed by GitHub
parent bf8e2c1449
commit 3f9d08a002
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -650,7 +650,7 @@ class FlutterPlugin implements Plugin<Project> {
doLast { doLast {
project.exec { project.exec {
if (Os.isFamily(Os.FAMILY_WINDOWS)) { if (Os.isFamily(Os.FAMILY_WINDOWS)) {
commandLine('cmd', '/c', 'attrib -r ${assetsDirectory}/* /s') commandLine('cmd', '/c', "attrib -r ${assetsDirectory}/* /s")
} else { } else {
commandLine('chmod', '-R', 'u+w', assetsDirectory) commandLine('chmod', '-R', 'u+w', assetsDirectory)
} }