mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 03:50:54 +01:00
Fix secrets detect in packaging
This commit is contained in:
@@ -10,7 +10,7 @@ namespace Content.Packaging;
|
||||
|
||||
public static class ClientPackaging
|
||||
{
|
||||
private static readonly bool UseSecrets = Directory.Exists(Path.Combine("Secrets")); // Corvax-Secrets
|
||||
private static readonly bool UseSecrets = File.Exists(Path.Combine("Secrets", "CorvaxSecrets.sln")); // Corvax-Secrets
|
||||
/// <summary>
|
||||
/// Be advised this can be called from server packaging during a HybridACZ build.
|
||||
/// </summary>
|
||||
|
||||
@@ -78,7 +78,7 @@ public static class ServerPackaging
|
||||
"zh-Hant"
|
||||
};
|
||||
|
||||
private static readonly bool UseSecrets = Directory.Exists(Path.Combine("Secrets")); // Corvax-Secrets
|
||||
private static readonly bool UseSecrets = File.Exists(Path.Combine("Secrets", "CorvaxSecrets.sln")); // Corvax-Secrets
|
||||
|
||||
public static async Task PackageServer(bool skipBuild, bool hybridAcz, IPackageLogger logger, List<string>? platforms = null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user