-
Notifications
You must be signed in to change notification settings - Fork 8
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
Fix/init #45
Conversation
readme.md
Outdated
@@ -66,6 +66,9 @@ module.exports = { | |||
repo: "github-repo", | |||
circleApi: "circleApiToken", | |||
googleJsonPath: "path/to/google/json", | |||
storePassword: "password", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These could be prefixed as keystore, so keystorePassword, keystoreAlias keystoreAliasPassword or something like that so it is clear that they are related.
src/flows/android.js
Outdated
return { | ||
googleJsonPath: options.googleJsonPath, | ||
googleJsonPath | ||
const askStorePassword = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be great to first make sure that user wants to create a keystore and only then asks these.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just ran into this as my existing configuration got mangled; for existing apps, prompting for existing keystore configurations would be great.
@@ -29,7 +32,7 @@ const askQuestions = async ({ prompt }, options) => { | |||
} | |||
// ask a series of questions | |||
const questions = [askOrganization, askProject, askApiToken] | |||
const answers = prompt.ask(questions) | |||
const answers = await prompt.ask(questions) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Fix #8 #44