Skip to content

Commit

Permalink
feat: also detect Helix step with bin name hx (topgrade-rs#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveLauC authored Feb 22, 2024
1 parent 12b0fa5 commit a43b03d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/steps/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down

0 comments on commit a43b03d

Please sign in to comment.