We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88c45fb commit 64ccd7dCopy full SHA for 64ccd7d
src/commands/compose/compose.ts
@@ -67,6 +67,8 @@ async function compose(context: IActionContext, commands: ('up' | 'down' | 'upSu
67
// Add the service list if needed
68
terminalCommand.command = await addServicesOrProfilesIfNeeded(context, folder, terminalCommand.command, preselectedServices, preselectedProfiles);
69
} else if (command === 'upSubset') {
70
+ // If there are arguments, it means we're using a default command (based on the logic in selectCommandTemplate.ts)
71
+ // So, we only want to add profile/service list for the upSubset command
72
terminalCommand = await addDefaultCommandServicesOrProfilesIfNeeded(context, folder, terminalCommand, preselectedServices, preselectedProfiles);
73
}
74
0 commit comments