mirror of
https://github.com/creating2morrow/neveko.git
synced 2025-03-15 16:13:13 +00:00
fix release artifacts core path
This commit is contained in:
parent
c5a0d03eac
commit
a22c012c63
2 changed files with 3 additions and 3 deletions
|
@ -75,8 +75,7 @@ pub fn start_core(conn: &Connections) {
|
|||
"--i2p-zero-dir", &conn.i2p_zero_dir,
|
||||
"-r", env,
|
||||
];
|
||||
let path = if conn.mainnet { "nevmes" } else { "../target/debug/nevmes" };
|
||||
let output = std::process::Command::new(path)
|
||||
let output = std::process::Command::new("./nevmes")
|
||||
.args(args)
|
||||
.spawn()
|
||||
.expect("core module failed to start");
|
||||
|
|
3
nevmes-gui/.gitignore
vendored
3
nevmes-gui/.gitignore
vendored
|
@ -1,4 +1,5 @@
|
|||
/target
|
||||
/core
|
||||
notes.txt
|
||||
.env
|
||||
.env
|
||||
nevmes
|
Loading…
Reference in a new issue