Skip to content

Commit 0f99fe5

Browse files
committed
Fixed issue where solution wouldn't generate unless heads folder already exists
1 parent 9df1bb8 commit 0f99fe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GenerateSingleSolution.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ $MultiTargets = $MultiTargets | Where-Object { $_ -notin $ExcludeMultiTargets }
129129
$headsFolderName = "heads"
130130
$componentName = (Get-Item $componentPath -ErrorAction Stop).Name
131131

132-
$outputHeadsDir = Get-Item "$componentPath\$headsFolderName";
132+
$outputHeadsDir = "$componentPath\$headsFolderName";
133133

134134
# Remove existing heads directory to refresh
135135
Write-Output "Removing existing heads directory: $outputHeadsDir"

0 commit comments

Comments
 (0)