File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/core/src/codewhisperer/service/transformByQ Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ import globals from '../../../shared/extensionGlobals'
1717function collectDependenciesAndMetadata ( dependenciesFolderPath : string , workingDirPath : string ) {
1818 getLogger ( ) . info ( 'CodeTransformation: running mvn clean test-compile with maven JAR' )
1919
20- const baseCommand = transformByQState . getMavenName ( )
20+ const baseCommand = transformByQState . getMavenName ( ) // always 'mvn'
2121 const jarPath = globals . context . asAbsolutePath ( path . join ( 'resources' , 'amazonQCT' , 'QCT-Maven-1-0-156-0.jar' ) )
2222
2323 getLogger ( ) . info ( 'CodeTransformation: running Maven extension with JAR' )
2424
2525 const args = [
26- `-Dmaven.ext.class.path=${ jarPath } ` ,
27- `-Dcom.amazon.aws.developer.transform.jobDirectory=${ dependenciesFolderPath } ` ,
26+ `-Dmaven.ext.class.path=" ${ jarPath } " ` ,
27+ `-Dcom.amazon.aws.developer.transform.jobDirectory=" ${ dependenciesFolderPath } " ` ,
2828 'clean' ,
2929 'test-compile' ,
3030 ]
You can’t perform that action at this time.
0 commit comments