Skip to content

Commit d7d8e70

Browse files
Misssed a spot for packaging (ProjectOmu#1469)
* Missed one * Whoops
1 parent fc51043 commit d7d8e70

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Content.Packaging/ClientPackaging.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ await ProcessHelpers.RunCheck(new ProcessStartInfo
2828
ArgumentList =
2929
{
3030
"build",
31-
Path.Combine("Content.Omu.Client, Content.Omu.Client.csproj"), // Omu
31+
Path.Combine("Content.Omu.Client", "Content.Omu.Client.csproj"), // Omu
3232
"-c", configuration,
3333
"--nologo",
3434
"/v:m",
@@ -77,7 +77,7 @@ public static async Task WriteResources(
7777
// Goob edit start
7878
// thanks 'dletandas'
7979
var sourcePath = Path.Combine(contentDir, "bin", "Content.Client");
80-
var deps = DepsHandler.Load(Path.Combine(sourcePath, "Content.Goobstation.Client.deps.json"));
80+
var deps = DepsHandler.Load(Path.Combine(sourcePath, "Content.Omu.Client.deps.json")); // omu
8181
var contentAssemblies = ServerPackaging.GetContentAssemblyNamesToCopy(deps, "Client");
8282
// Good edit end
8383

0 commit comments

Comments
 (0)