Skip to content

Commit

Permalink
Wrap command line arguments in quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
MJRasicci committed Aug 24, 2023
1 parent 1f2a1d5 commit fd36299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Tailwind.MSBuild/Tasks/BuildTailwindCSS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public override bool Execute()
}

// Build
RunCli($"-c {this.ConfigFile} -i {this.InputFile} -o {this.OutputFile}{(this.Minify ? " -m" : string.Empty)}");
RunCli($"-c \"{this.ConfigFile}\" -i \"{this.InputFile}\" -o \"{this.OutputFile}\"{(this.Minify ? " -m" : string.Empty)}");

this.GeneratedCssFile = this.OutputFile;

Expand Down

0 comments on commit fd36299

Please sign in to comment.