Skip to content

Commit

Permalink
Closes #9 Fix wrong argument to build appbundle
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaMarkic committed Oct 15, 2021
1 parent 18f6b0d commit a3787f7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static void FlutterBuildAppBundle(this ICakeContext context, FlutterBuild
throw new ArgumentNullException("context");
}
var runner = new GenericRunner<FlutterBuildAppBundleSettings>(context.FileSystem, context.Environment, context.ProcessRunner, context.Tools);
runner.Run("build apk", settings ?? new FlutterBuildAppBundleSettings());
runner.Run("build appbundle", settings ?? new FlutterBuildAppBundleSettings());
}


Expand All @@ -39,7 +39,7 @@ public static IEnumerable<string> FlutterBuildAppBundleWithResult(this ICakeCont
throw new ArgumentNullException("context");
}
var runner = new GenericRunner<FlutterBuildAppBundleSettings>(context.FileSystem, context.Environment, context.ProcessRunner, context.Tools);
return runner.RunWithResult("build apk", settings ?? new FlutterBuildAppBundleSettings());
return runner.RunWithResult("build appbundle", settings ?? new FlutterBuildAppBundleSettings());
}

}
Expand Down

0 comments on commit a3787f7

Please sign in to comment.