Fix stupid issue

This commit is contained in:
Michiel Hazelhof 2023-01-03 11:36:37 +01:00
parent 91c8d76d3d
commit 86ca7b4100
No known key found for this signature in database
GPG Key ID: EECB9B96355B5EBF
1 changed files with 4 additions and 4 deletions

View File

@ -47,16 +47,16 @@ foreach ($component in $components) {
docker run -v "$pwd\temp:/app/mount" --rm bitbetter/bitbetter
foreach ($component in $components) {
docker cp -a "$pwd\temp\$component\Core.dll" $patchinstance`:/app/$component/Core.dll
docker cp "$pwd\temp\$component\Core.dll" $patchinstance`:/app/$component/Core.dll
}
Copy-Item "$pwd\temp\Identity\Core.dll" -Destination "$pwd\licenseGen"
Remove-Item "$pwd\temp" -Recurse -Force
docker commit $patchinstance bitwarden-patch
docker stop bitwarden-patch
docker rm bitwarden-patch
Copy-Item "$pwd\temp\Identity\Core.dll" -Destination "$pwd\licenseGen"
Remove-Item "$pwd\temp" -Recurse -Force
$newinstances = @()
foreach($line in Get-Content "$pwd\.servers\serverlist.txt") {
$newinstace = @(Invoke-Expression "& $line")