use crate::*;
/// Enable pipefail feature to ensure that the exit status of a pipeline
/// accurately reflects the success or failure of all commands within that pipeline, not just
/// the last one.
///
/// So it helps user writing more rubost nushell script.
pub static PIPE_FAIL: ExperimentalOption = new;
// No documentation needed here since this type isn't public.
// The static above provides all necessary details.
;