Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bugfix] isForceInsert为false时,task的名字不能是缩写必须是全称 #271

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ximsfei
Copy link

@ximsfei ximsfei commented May 6, 2018

for (int index = 0; index < taskNames.size(); ++index) {
    def taskName = taskNames[index]
    logger.debug "input start parameter task is ${taskName}"
    //FIXME: assembleRelease下屏蔽Prepare,这里因为还没有执行Task,没法直接通过当前的BuildType来判断,所以直接分析当前的startParameter中的taskname,
    //另外这里有一个小坑task的名字不能是缩写必须是全称 例如assembleDebug不能是任何形式的缩写输入
    if (taskName.endsWith("Debug") && taskName.contains("Debug")) {
        isDebugTask = true
        break;
    }
}

Fixed: 不再需要通过taskName来判断buildType是否为debug了。

例如: assembleDebug不能是任何形式的缩写输入
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants