chore: fix build cli argument access

This commit is contained in:
Kingkor Roy Tirtho 2025-01-24 12:32:01 +06:00
parent b2b38a9191
commit ee95b3b26a

View File

@ -64,5 +64,5 @@ mixin BuildCommandCommonSteps on Command {
); );
} }
String get architecture => argResults?.option("arch") as String; String get architecture => parent?.argResults?.option("arch") as String;
} }