fix(cli): correct copy-paste typo in autostart

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
This commit is contained in:
LGUG2Z
2024-12-14 22:52:32 -08:00
parent 10539a4bab
commit be0671be6d

View File

@@ -1534,7 +1534,7 @@ fn main() -> Result<()> {
arguments.push_str(" --ahk");
}
if args.bar {
if args.masir {
arguments.push_str(" --masir");
}