Skip to content

Commit

Permalink
fix generator delimiter windows issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lokesh-couchbase committed Nov 10, 2023
1 parent c9724f3 commit 2ea71c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/CBImport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class CBImport {
cmd.push(importData.generateKeyExpression);

cmd.push("--generator-delimiter"); // Using default generator delimiter of '#'
cmd.push("#");
cmd.push(`"#"`);

// Advanced Settings
if(importData.skipDocsOrRows && importData.skipDocsOrRows.trim() !== ""){
Expand Down

0 comments on commit 2ea71c8

Please sign in to comment.