mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-10 18:21:20 +00:00
PXE deploy fix.
This commit is contained in:
parent
e34f8f7e65
commit
09fd4154c4
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ namespace Cosmos.VS.Package {
|
|||
|
||||
} else if (xTarget == BuildTarget.PXE) {
|
||||
string xPxePath = Path.Combine(CosmosPaths.Build, "PXE");
|
||||
File.Copy(xBinFile, Path.Combine(xPxePath, "Cosmos.bin"));
|
||||
File.Copy(xBinFile, Path.Combine(xPxePath, "Cosmos.bin"), true);
|
||||
Process.Start(Path.Combine(CosmosPaths.Tools, "Cosmos.Deploy.Pixie.GUI.exe"), "192.168.42.1 \"" + xPxePath + "\"");
|
||||
|
||||
} else if (xTarget == BuildTarget.VMware) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue