File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/commands/image/imageSource/buildImageInAzure Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export class UploadSourceCodeStep extends ExecuteActivityOutputStepBase<BuildIma
2323 private _sourceFilePath : string ;
2424
2525 protected async executeCore ( context : BuildImageInAzureImageSourceContext , progress : Progress < { message ?: string | undefined ; increment ?: number | undefined } > ) : Promise < void > {
26- this . _sourceFilePath = context . rootFolder . uri . fsPath === context . srcPath ? "." : path . relative ( context . rootFolder . uri . fsPath , context . srcPath ) ;
26+ this . _sourceFilePath = context . rootFolder . uri . fsPath === context . srcPath ? '.' : path . relative ( context . rootFolder . uri . fsPath , context . srcPath ) ;
2727 context . telemetry . properties . sourceDepth = this . _sourceFilePath === '.' ? '0' : String ( this . _sourceFilePath . split ( path . sep ) . length ) ;
2828
2929 context . registryName = nonNullValue ( context . registry ?. name ) ;
You can’t perform that action at this time.
0 commit comments