mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 22:37:45 +02:00
Fix quoting for command line args (#5384)
* Fix quoting for command line args * Replace custom quoting with escape_quote_string * Use raw string for now
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
mod deparse;
|
||||
mod errors;
|
||||
mod flatten;
|
||||
mod known_external;
|
||||
@ -7,6 +8,7 @@ mod parse_keywords;
|
||||
mod parser;
|
||||
mod type_check;
|
||||
|
||||
pub use deparse::escape_quote_string;
|
||||
pub use errors::ParseError;
|
||||
pub use flatten::{flatten_block, flatten_expression, flatten_pipeline, FlatShape};
|
||||
pub use known_external::KnownExternal;
|
||||
|
Reference in New Issue
Block a user