27 ShellCommand on localhost when calculating actions #28

Merged
Mr_Steppy merged 7 commits from 27-shell-command-on-localhost-when-calculating-actions into master 2025-02-03 22:34:22 +01:00
3 changed files with 4 additions and 4 deletions
Showing only changes of commit 02619870b9 - Show all commits

View File

@ -1,4 +1,4 @@
use crate::os_string_extension::OsStrExtension;
use crate::os_str_extension::OsStrExtension;
use crate::osf;
use std::error::Error;
use std::ffi::{OsStr, OsString};

View File

@ -3,15 +3,15 @@ mod command;
mod file;
mod logger;
mod os_string_builder;
mod os_string_extension;
mod os_str_extension;
mod server;
use crate::action::{Action, FileAction, ServerActions};
use crate::command::{CommandSpecificError, ExecutionError, LogRunnable};
use crate::file::{FileMatcher, FileNameInfo};
use crate::logger::{LogLevel, Logger};
use crate::os_str_extension::OsStrExtension;
use crate::os_string_builder::ReplaceWithOsStr;
use crate::os_string_extension::OsStrExtension;
use crate::server::{RelativeLocalPathAnker, ServerAddress};
use clap::{Parser, Subcommand, ValueEnum};
use lazy_regex::{lazy_regex, Lazy, Regex};

View File

@ -81,7 +81,7 @@ where
#[cfg(test)]
mod test {
use crate::os_string_extension::OsStrExtension;
use crate::os_str_extension::OsStrExtension;
use std::ffi::OsString;
#[test]