File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
codewhisperer/service/transformByQ Expand file tree Collapse file tree 2 files changed +4
-4
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 ]
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ Host ${this.configHostName}
208208
209209 protected createSSHConfigSection ( proxyCommand : string ) : string {
210210 if ( this . scriptPrefix === 'sagemaker_connect' ) {
211- return `${ this . getSageMakerSSHConfig ( proxyCommand ) } User '%r'\n `
211+ return `${ this . getSageMakerSSHConfig ( proxyCommand ) } `
212212 } else if ( this . keyPath ) {
213213 return `${ this . getBaseSSHConfig ( proxyCommand ) } IdentityFile '${ this . keyPath } '\n User '%r'\n`
214214 }
You can’t perform that action at this time.
0 commit comments