start command in nushell (#1727)

* mvp for start command

* modified the signature of the start command

* parse filenames

* working model for macos is done

* refactored to read from pipes

* start command works well on macos; manual testing reveals need of --args flag support

* implemented start error; color printing of warning and errors

* ran clippy and fixed warnings

* fix a clippy lint that was caught in pipeline

* fix dead code clippy lint for windows

* add cfg annotation to import
This commit is contained in:
Elton Leander Pinto
2020-05-08 14:19:48 -04:00
committed by GitHub
parent e04b89f747
commit 9a94b3c656
7 changed files with 258 additions and 0 deletions

View File

@ -0,0 +1,3 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
nu_build::build()
}