Skip to content

Commit a49d80a

Browse files
committed
(build) update to cake 2.2.0
1 parent b17d33e commit a49d80a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build/Directory.Packages.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project>
22
<ItemGroup>
3-
<PackageReference Include="Cake.Common" Version="2.1.0" />
3+
<PackageReference Include="Cake.Common" Version="2.2.0" />
44
<PackageReference Include="Cake.Compression" Version="0.2.6" />
5-
<PackageReference Include="Cake.Frosting" Version="2.1.0" />
5+
<PackageReference Include="Cake.Frosting" Version="2.2.0" />
66
<PackageReference Include="Cake.Incubator" Version="7.0.0" />
77

8-
<PackageReference Include="Cake.Docker" Version="1.1.1" />
8+
<PackageReference Include="Cake.Docker" Version="1.1.2" />
99

1010
</ItemGroup>
1111
</Project>

build/common/Utilities/Extensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static DirectoryPath GetRootDirectory()
5353
var currentPath = DirectoryPath.FromString(Directory.GetCurrentDirectory());
5454
while (!Directory.Exists(currentPath.Combine(".git").FullPath))
5555
{
56-
currentPath = DirectoryPath.FromString(Directory.GetParent(currentPath.FullPath)?.FullName);
56+
currentPath = currentPath.GetParent();
5757
}
5858

5959
return currentPath;

0 commit comments

Comments
 (0)