Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
[expo-cli] add missing arg for credential update (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
wkozyra95 committed Feb 5, 2019
1 parent b278913 commit ca185b1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions packages/expo-cli/src/commands/build/AndroidBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,12 @@ export default class AndroidBuilder extends BaseBuilder {
keystorePassword,
keyPassword,
};
await Credentials.updateCredentialsForPlatform(ANDROID, credentials, credentialMetadata);
await Credentials.updateCredentialsForPlatform(
ANDROID,
credentials,
[],
credentialMetadata
);
}
}
}
Expand All @@ -216,7 +221,7 @@ export default class AndroidBuilder extends BaseBuilder {
keystorePassword: process.env.EXPO_ANDROID_KEYSTORE_PASSWORD,
keyPassword: process.env.EXPO_ANDROID_KEY_PASSWORD,
};
await Credentials.updateCredentialsForPlatform(ANDROID, credentials, credentialMetadata);
await Credentials.updateCredentialsForPlatform(ANDROID, credentials, [], credentialMetadata);
}

async validateProject(options) {
Expand Down

0 comments on commit ca185b1

Please sign in to comment.