##// END OF EJS Templates
pyoxidizer: make sure defaultrc directory exists before trying to write to it...
pyoxidizer: make sure defaultrc directory exists before trying to write to it When doing some work involving one-file binaries, this line is failing for me. It seems reasonable to just make sure the destination directory exists before splatting the file into it. Differential Revision: https://phab.mercurial-scm.org/D9401

File last commit:

r46113:33ded2d3 default
r46534:37bcd7f5 default
Show More
commands.rs
13 lines | 293 B | application/rls-services+xml | RustLexer
pub mod cat;
pub mod debugdata;
pub mod files;
pub mod root;
use crate::error::CommandError;
use crate::ui::Ui;
/// The common trait for rhg commands
///
/// Normalize the interface of the commands provided by rhg
pub trait Command {
fn run(&self, ui: &Ui) -> Result<(), CommandError>;
}