Fixing build UI stuff along with Rust (#2726)

This commit is contained in:
Tomasz Drwięga 2016-10-19 18:33:24 +02:00 committed by Gav Wood
parent a71006ebc4
commit 048d6968b0
2 changed files with 2 additions and 2 deletions

View File

@ -17,6 +17,6 @@
extern crate parity_dapps_glue;
fn main() {
parity_dapps_glue::js::build(concat!(env!("CARGO_MANIFEST_DIR"), "../../js"));
parity_dapps_glue::js::build(concat!(env!("CARGO_MANIFEST_DIR"), "/../../js"));
parity_dapps_glue::generate();
}

View File

@ -51,5 +51,5 @@ impl WebApp for App {
#[test]
fn test_js() {
parity_dapps_glue::js::build(concat!(env!("CARGO_MANIFEST_DIR"), "../../js"));
parity_dapps_glue::js::build(concat!(env!("CARGO_MANIFEST_DIR"), "/../../js"));
}