Skip to content

Commit

Permalink
Fix typo of package task (#321)
Browse files Browse the repository at this point in the history
* Fix typo of package task

* Modify `completedone` to `complete\ndone`

`completedone` looks a little bit wired.

* Update apps/remote_control/lib/mix/tasks/namespace/transform/beams.ex

Co-authored-by: Étienne Lévesque <[email protected]>

---------

Co-authored-by: Étienne Lévesque <[email protected]>
  • Loading branch information
scottming and Blond11516 authored Aug 12, 2023
1 parent 4d1edce commit 7c76f0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ defmodule Mix.Tasks.Namespace.Transform.Beams do
defp changed?(_, _), do: true

defp block_until_done(same, same) do
Mix.Shell.IO.info("done")
Mix.Shell.IO.info("\n done")
end

defp block_until_done(current, max) do
Expand Down
2 changes: 1 addition & 1 deletion apps/server/lib/mix/tasks/package.ex
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ defmodule Mix.Tasks.Package do
default_path = Path.join([Mix.Project.build_path(), "package", "lexical"])
package_root = Keyword.get(opts, :path, default_path)

Mix.Shell.IO.info("Assembling buld in #{package_root}")
Mix.Shell.IO.info("Assembling build in #{package_root}")
File.mkdir_p!(package_root)

{:ok, scratch_directory} = prepare(package_root)
Expand Down

0 comments on commit 7c76f0d

Please sign in to comment.