Skip to content

Commit ef1f563

Browse files
committed
fix: move ThirdParty to Source/ThirdParty
1 parent 6ea1e17 commit ef1f563

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ Source/**/*.ecsact.*
8585
/Dist
8686

8787
# Third party files that get filled in with release script
88-
/ThirdParty
88+
/Source/ThirdParty

Source/Ecsact/Ecsact.Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ private string GetEcsactSdkIncludeDir() {
131131

132132
private string GetEcsactSdkBinary(string binaryName) {
133133
var thirdPartyEcsactSdk =
134-
Path.Combine(PluginDirectory, "ThirdParty/EcsactSDK");
134+
Path.Combine(PluginDirectory, "Source/ThirdParty/EcsactSDK");
135135
var exePath = Path.Combine(thirdPartyEcsactSdk, $"bin/{binaryName}.exe");
136136
if(File.Exists(exePath)) {
137137
return exePath;

Source/EcsactUnrealCodegenPlugin/EcsactUnrealCodegenPlugin.Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ private string GetEcsactSdkIncludeDir() {
4848

4949
private string GetEcsactSdkBinary(string binaryName) {
5050
var thirdPartyEcsactSdk =
51-
Path.Combine(PluginDirectory, "ThirdParty/EcsactSDK");
51+
Path.Combine(PluginDirectory, "Source/ThirdParty/EcsactSDK");
5252
var exePath = Path.Combine(thirdPartyEcsactSdk, $"bin/{binaryName}.exe");
5353
if(File.Exists(exePath)) {
5454
return exePath;

0 commit comments

Comments
 (0)