Merge "Fix a bug in generateNoticeRule." am: 34b1b27981
am: 4f4a498032
Change-Id: I66f6fcefd987da6e2cecd939639f1c8b5efb0c98
This commit is contained in:
commit
3aa68561eb
1 changed files with 2 additions and 2 deletions
|
@ -42,8 +42,8 @@ var (
|
|||
})
|
||||
|
||||
generateNoticeRule = pctx.AndroidStaticRule("generateNoticeRule", blueprint.RuleParams{
|
||||
Command: `rm -rf $$(dirname $txtOut) $$(dirname htmlOut) $$(dirname $out) && ` +
|
||||
`mkdir -p $$(dirname $txtOut) $$(dirname htmlOut) $$(dirname $out) && ` +
|
||||
Command: `rm -rf $$(dirname $txtOut) $$(dirname $htmlOut) $$(dirname $out) && ` +
|
||||
`mkdir -p $$(dirname $txtOut) $$(dirname $htmlOut) $$(dirname $out) && ` +
|
||||
`${generate_notice} --text-output $txtOut --html-output $htmlOut -t "$title" -s $inputDir && ` +
|
||||
`${minigzip} -c $htmlOut > $out`,
|
||||
CommandDeps: []string{"${generate_notice}", "${minigzip}"},
|
||||
|
|
Loading…
Reference in a new issue