From a43b03d3db558c669694778e05d5af9281fba742 Mon Sep 17 00:00:00 2001 From: SteveLauC Date: Fri, 23 Feb 2024 07:39:31 +0800 Subject: [PATCH] feat: also detect Helix step with bin name hx (#710) --- src/steps/generic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/generic.rs b/src/steps/generic.rs index 99ef3daa..cf2e5360 100644 --- a/src/steps/generic.rs +++ b/src/steps/generic.rs @@ -796,7 +796,7 @@ pub fn run_dotnet_upgrade(ctx: &ExecutionContext) -> Result<()> { } pub fn run_helix_grammars(ctx: &ExecutionContext) -> Result<()> { - let helix = require("helix")?; + let helix = require("helix").or(require("hx"))?; print_separator("Helix");