Skip to content

Commit

Permalink
Fix Folders
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeRobich committed Oct 26, 2021
1 parent b492fc2 commit 6082390
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,10 @@ Task("InstallMonoAssets")
DownloadFileAndUnzip($"{buildPlan.DownloadURL}/{buildPlan.MonoRuntimeLinux32}", env.Folders.MonoRuntimeLinux32);
DownloadFileAndUnzip($"{buildPlan.DownloadURL}/{buildPlan.MonoRuntimeLinux64}", env.Folders.MonoRuntimeLinux64);

var runScriptFile = CombinePaths(env.Folder.MonoPackaging, "run");
FileHelper.Copy(runScriptFile, CombinePaths(env.Folders.MonoRuntimeMacOS, "run"));
FileHelper.Copy(runScriptFile, CombinePaths(env.Folders.MonoRuntimeLinux32, "run"));
FileHelper.Copy(runScriptFile, CombinePaths(env.Folders.MonoRuntimeLinux64, "run"));
var runScriptFile = CombinePaths(env.Folders.MonoPackaging, "run");
FileHelper.Copy(runScriptFile, CombinePaths(env.Folders.MonoRuntimeMacOS, "run", overwrite: true));
FileHelper.Copy(runScriptFile, CombinePaths(env.Folders.MonoRuntimeLinux32, "run", overwrite: true));
FileHelper.Copy(runScriptFile, CombinePaths(env.Folders.MonoRuntimeLinux64, "run", overwrite: true));

var monoInstallFolder = env.CurrentMonoRuntime.InstallFolder;
var monoRuntimeFile = env.CurrentMonoRuntime.RuntimeFile;
Expand Down

0 comments on commit 6082390

Please sign in to comment.