From e3bd01ab330b11dd9b2dbc80cc9da56423708edb Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Tue, 1 Aug 2023 11:31:26 +0200 Subject: [PATCH] y --- .woodpecker.yml | 3 +-- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index c23d4a782..9c80d3638 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -5,8 +5,7 @@ variables: - &muslrust_image "clux/muslrust:1.70.0" - &slow_check_paths - path: &when_path - - "crates" - - "src" + - "**/*.rs" - "Cargo.toml" - "migrations" - "api_tests" diff --git a/src/lib.rs b/src/lib.rs index 176a05af3..4772addf8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -66,7 +66,7 @@ pub(crate) const REQWEST_TIMEOUT: Duration = Duration::from_secs(10); /// Placing the main function in lib.rs allows other crates to import it and embed Lemmy pub async fn start_lemmy_server() -> Result<(), LemmyError> { - println!("test 3"); + println!("test 4"); let args: Vec = env::args().collect(); let scheduled_tasks_enabled = args.get(1) != Some(&"--disable-scheduled-tasks".to_string());