mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Fixed issue when the first file specified as an argument was a relative directory (#8520)
This commit is contained in:
parent
fc16449efe
commit
e6d2835b09
4 changed files with 17 additions and 5 deletions
|
@ -320,6 +320,14 @@ impl AppBuilder {
|
|||
}
|
||||
|
||||
pub fn build(self) -> anyhow::Result<Application> {
|
||||
if let Some(path) = &self.args.working_directory {
|
||||
bail!("Changing the working directory to {path:?} is not yet supported for integration tests");
|
||||
}
|
||||
|
||||
if let Some((path, _)) = self.args.files.first().filter(|p| p.0.is_dir()) {
|
||||
bail!("Having the directory {path:?} in args.files[0] is not yet supported for integration tests");
|
||||
}
|
||||
|
||||
let mut app = Application::new(self.args, self.config, self.syn_conf)?;
|
||||
|
||||
if let Some((text, selection)) = self.input {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue