Fix postgres on the public server.

This commit is contained in:
Pieter-Jan Briers 2020-01-24 20:48:24 +01:00
parent 514d05b237
commit d16fe5376d
No known key found for this signature in database
GPG Key ID: 132054DF433AE592
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ def copy_content_assemblies(target, zipf, server):
source_dir = p("bin", "Content.Server")
files = ["Content.Shared.dll", "Content.Server.dll"] + SERVER_EXTRA_CONTENT_ASSEMBLIES
for filename in os.listdir(source_dir):
if filename.startswith("Microsoft."):
if filename.startswith("Microsoft.") or filename.startswith("Npgsql."):
files.append(filename)
else: