Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rickbutterfield committed Dec 16, 2024
1 parent 43c8cfe commit 97e57f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal class SustainabilityComposer : IComposer
public void Compose(IUmbracoBuilder builder)
{
string value = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
Environment.SetEnvironmentVariable("PLAYWRIGHT_BROWSERS_PATH", $"{value}\\ms-playwright");
Environment.SetEnvironmentVariable("PLAYWRIGHT_BROWSERS_PATH", $"{value}{Path.DirectorySeparatorChar}ms-playwright");

var exitCode = Microsoft.Playwright.Program.Main(new[] { "install", "chromium" });
if (exitCode != 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<RootNamespace>Umbraco.Community.Sustainability</RootNamespace>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>

<VersionPrefix>1.0.5</VersionPrefix>
<VersionPrefix>1.0.6</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>Umbraco Sustainability Community Team</Authors>
<Copyright>$([System.DateTime]::UtcNow.ToString(`yyyy`)) © Umbraco Sustainability Community Team</Copyright>
Expand Down Expand Up @@ -58,5 +58,5 @@
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit 97e57f6

Please sign in to comment.