Fix not creating branches/tags folders

This commit is contained in:
Steve Streeting 2020-04-23 15:33:39 +01:00
parent 7ce5fa40d6
commit fee7fd0662

View File

@ -81,7 +81,7 @@ Write-Output "Creating trunk/branches/tags folders"
$commit = $false
foreach ($dir in @("trunk", "branches", "tags")) {
if (-not $(Test-Path trunk)) {
if (-not $(Test-Path $dir)) {
New-Item $dir -ItemType Directory > $null
svn add $dir > $null
$commit = $true