mirror of
https://github.com/apache/cordova-android.git
synced 2025-03-16 08:21:04 +08:00
CB-13612: eslint fix
This commit is contained in:
parent
a9e01f4309
commit
adc7dab377
6
bin/templates/cordova/lib/pluginHandlers.js
vendored
6
bin/templates/cordova/lib/pluginHandlers.js
vendored
@ -37,10 +37,10 @@ var handlers = {
|
|||||||
// If a Java file is using the new directory structure, don't penalize it
|
// If a Java file is using the new directory structure, don't penalize it
|
||||||
if (!obj.targetDir.includes('app/src/main')) {
|
if (!obj.targetDir.includes('app/src/main')) {
|
||||||
if (obj.src.endsWith('.java')) {
|
if (obj.src.endsWith('.java')) {
|
||||||
dest = path.join('app/src/main/java', obj.targetDir.substring(4), path.basename(obj.src));
|
dest = path.join('app/src/main/java', obj.targetDir.substring(4), path.basename(obj.src));
|
||||||
} else if (obj.src.endsWith('.xml')) {
|
} else if (obj.src.endsWith('.xml')) {
|
||||||
// We are making a huge assumption here that XML files will be going to res/xml or values/xml
|
// We are making a huge assumption here that XML files will be going to res/xml or values/xml
|
||||||
dest = path.join('app/src/main', obj.targetDir, path.basename(obj.src));
|
dest = path.join('app/src/main', obj.targetDir, path.basename(obj.src));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user