Skip to content

Commit 251a8e4

Browse files
committed
Single quote
1 parent 551513f commit 251a8e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/image/imageSource/buildImageInAzure/UploadSourceCodeStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)