Skip to content

Commit

Permalink
fix(cli): correct copy-paste typo in autostart
Browse files Browse the repository at this point in the history
This commit corrects a typo which adds the "--masir" flag to the
autostart shortcut when the user has passed the "--bar" flag to the
enable-autostart command.

fix #1178
  • Loading branch information
LGUG2Z committed Dec 15, 2024
1 parent 10539a4 commit be0671b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion komorebic/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,7 @@ fn main() -> Result<()> {
arguments.push_str(" --ahk");
}

if args.bar {
if args.masir {
arguments.push_str(" --masir");
}

Expand Down

0 comments on commit be0671b

Please sign in to comment.