Skip to content

Commit

Permalink
Fix rules overrides bug (#804)
Browse files Browse the repository at this point in the history
* Fixes bug which prevent okbuck_keystore and okbuck_manifest rules to be overriden
  • Loading branch information
thalescm authored and kageiit committed Jan 26, 2019
1 parent 0cd125d commit c44188d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ String storePassword,
String keyAlias,
String keyPassword
)
okbuck_keystore(
name = '@name',
storeFile = '@storeFile',
storePassword = '@storePassword',
keyAlias = '@keyAlias',
keyPassword = '@keyPassword'
@(ruleType)(
name = '@name',
storeFile = '@storeFile',
storePassword = '@storePassword',
keyAlias = '@keyAlias',
keyPassword = '@keyPassword',
)
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ String versionName,
boolean debuggable,
Collection secondaryManifests
)
okbuck_manifest(
@(ruleType)(
name = '@name',
main_manifest = '@mainManifest',
min_sdk = '@minSdk',
Expand Down

0 comments on commit c44188d

Please sign in to comment.