summaryrefslogtreecommitdiffstats
path: root/src/proclist.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/proclist.rs')
-rw-r--r--src/proclist.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/proclist.rs b/src/proclist.rs
index 74912ea..69dc1e8 100644
--- a/src/proclist.rs
+++ b/src/proclist.rs
@@ -51,6 +51,8 @@ impl Cmd {
}
fn substitute_cwd_files(&mut self, cmd: Vec<OsString>) -> Vec<OsString> {
+ if self.cwd_files.is_none() { return cmd; }
+
let cwd_pat = OsString::from("$s");
let cwd_files = self.cwd_files
.take()
@@ -66,6 +68,8 @@ impl Cmd {
}
fn substitute_tab_files(&mut self, cmd: Vec<OsString>) -> Vec<OsString> {
+ if self.tab_files.is_none() { return cmd; }
+
let tab_files = self.tab_files.take().unwrap();
tab_files.into_iter()
@@ -84,6 +88,8 @@ impl Cmd {
}
fn substitute_tab_paths(&mut self, cmd: Vec<OsString>) -> Vec<OsString> {
+ if self.tab_paths.is_none() { return cmd; }
+
let tab_paths = self.tab_paths.take().unwrap();
tab_paths.into_iter()