Skip to content

Commit

Permalink
Fixed typo, handle filepaths with spaces (#1602)
Browse files Browse the repository at this point in the history
  • Loading branch information
jzabroski authored Dec 18, 2020
1 parent be27f7a commit ce859df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docfx_project/examples/ChromeExtension.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ var launhcOptions = new LaunhcOptions()
Headless = false,
Args = new []
{
$"--disable-extensions-except={pathToExtension}",
$"--load-extension=${pathToExtension}"
$@"--disable-extensions-except=""{pathToExtension}""",
$@"--load-extension=""{pathToExtension}"""
}
};

Expand Down

0 comments on commit ce859df

Please sign in to comment.