Added tank column to servervehicles

This commit is contained in:
hydrant
2019-03-07 20:39:30 +01:00
parent 04ed4bc322
commit 5bf613bac4
5 changed files with 1389 additions and 352 deletions

View File

@@ -5,9 +5,16 @@ $csPackagesPath = "$rootPath\cs_packages"
$dlcPacksPath = "$rootPath\dlcpacks"
$clientResourcesPath = "$rootPath\..\..\client_packages"
$sourceDlcPacksPath = "$rootPath\..\..\source_dlcpacks"
Remove-Item -Path "$clientResourcesPath\*" -Recurse -Force
$exclude = @('*.ts', 'package.json', 'package-lock.json', 'tsconfig.json', '*.csproj', 'Scripts', 'node_modules', 'bin', 'obj')
$exclude = @('*.ts', 'package.json', 'package-lock.json', 'tsconfig.json', '*.csproj', 'Scripts', 'node_modules', 'bin', 'obj', 'dlcpacks')
if(!(Test-Path $sourceDlcPacksPath))
{
New-Item -Type Directory $sourceDlcPacksPath
}
Copy-Item "$rootPath\*" $clientResourcesPath -Recurse -Exclude $exclude
Copy-Item "$dlcPacksPath\*" $sourceDlcPacksPath -Recurse -Force