-
Notifications
You must be signed in to change notification settings - Fork 39
feat(create): cleanup app creation outputs when slack create -app passed
#598
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
Changes from 3 commits
a0f86d7
7b615b7
ecac2c5
bfde928
4b5a8c8
925c458
3a50f11
8374023
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -110,7 +110,7 @@ func projectInitCommandRunE(clients *shared.ClientFactory, cmd *cobra.Command, a | |
| _ = create.InstallProjectDependencies(ctx, clients, projectDirPath) | ||
|
|
||
| // Add an existing app to the project | ||
| err = app.LinkExistingApp(ctx, clients, &types.App{}, true) | ||
| err = app.LinkCommandRunE(ctx, clients, &types.App{}, true, false) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 thought: No blocker but we might want to refactor the confirmation prompt to be here instead of within the ⚡ ramble: I find boolean arguments unclear and also think a command should run if it's called - it'd be up to the caller to decide if that command should run instead! |
||
| if err != nil { | ||
| // Display the error but continue to init | ||
| clients.IO.PrintError(ctx, "%s", err.Error()) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.