mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 04:38:20 +00:00
Fix copy/paste error
This commit is contained in:
parent
064786f379
commit
be54f1a532
1 changed files with 6 additions and 0 deletions
|
@ -177,6 +177,8 @@ Task("Package-DotNetCore-LinuxAMD64")
|
|||
string updaterOutputPath = buildOutputPath + "/Updater";
|
||||
|
||||
DotNetCorePublish(serverProjectPath, netCoreFramework, runtimeId, buildOutputPath);
|
||||
|
||||
DotNetCorePublish(updaterProjectPath, netCoreFramework, runtimeId, updaterOutputPath);
|
||||
CopyFiles(updaterOutputPath + "/JackettUpdater*", buildOutputPath);
|
||||
DeleteDirectory(updaterOutputPath, recursive:true);
|
||||
|
||||
|
@ -195,6 +197,8 @@ Task("Package-DotNetCore-LinuxARM32")
|
|||
string updaterOutputPath = buildOutputPath + "/Updater";
|
||||
|
||||
DotNetCorePublish(serverProjectPath, netCoreFramework, runtimeId, buildOutputPath);
|
||||
|
||||
DotNetCorePublish(updaterProjectPath, netCoreFramework, runtimeId, updaterOutputPath);
|
||||
CopyFiles(updaterOutputPath + "/JackettUpdater*", buildOutputPath);
|
||||
DeleteDirectory(updaterOutputPath, recursive:true);
|
||||
|
||||
|
@ -213,6 +217,8 @@ Task("Package-DotNetCore-LinuxARM64")
|
|||
string updaterOutputPath = buildOutputPath + "/Updater";
|
||||
|
||||
DotNetCorePublish(serverProjectPath, netCoreFramework, runtimeId, buildOutputPath);
|
||||
|
||||
DotNetCorePublish(updaterProjectPath, netCoreFramework, runtimeId, updaterOutputPath);
|
||||
CopyFiles(updaterOutputPath + "/JackettUpdater*", buildOutputPath);
|
||||
DeleteDirectory(updaterOutputPath, recursive:true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue