File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,9 +144,9 @@ export async function executeInTerminal(options: {
144
144
if ( pomfile ) {
145
145
const project = MavenProjectManager . get ( pomfile ) ;
146
146
const selectedIds = project ?. profiles ?. filter ( p => p . selected === true ) ?. map ( p => p . id ) ?? [ ] ;
147
- const unselectedIds = project ?. profiles ?. filter ( p => p . selected === false ) ?. map ( p => `! ${ p . id } ` ) ?? [ ] ;
147
+ const unselectedIds = project ?. profiles ?. filter ( p => p . selected === false ) ?. map ( p => `- ${ p . id } ` ) ?? [ ] ;
148
148
if ( selectedIds . length + unselectedIds . length > 0 ) {
149
- profileOptions = "-P " + selectedIds . concat ( unselectedIds ) . join ( "," ) ;
149
+ profileOptions = "-P= " + selectedIds . concat ( unselectedIds ) . join ( "," ) ;
150
150
}
151
151
}
152
152
const fullCommand : string = [
You can’t perform that action at this time.
0 commit comments