From 2b2af1a48450a5546850d8ed8d25f39ace902c7f Mon Sep 17 00:00:00 2001 From: Jonas da Silva Date: Sat, 19 Oct 2024 19:16:43 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Correct=20filter=20syntax?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 7168755..1ebbe71 100644 --- a/src/config.rs +++ b/src/config.rs @@ -188,7 +188,7 @@ pub struct Plugin { /// ```toml /// [[plugin]] /// run = "hello" - /// when = "any(os = linux, os = android)" + /// when = 'env("ALLAY_DEBUG") == "1"' /// ``` pub when: Option,