Skip to content

Commit

Permalink
Add Unicode modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
robertoaloi committed Feb 16, 2024
1 parent a372d02 commit 8b6c828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/rebar/src/rebar_prv_manifest.erl
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ adapt_context(App) ->
-spec output_manifest(binary(), string() | undefined) -> ok | {error, term()}.
output_manifest(Manifest, undefined) ->
rebar_log:log(info, "Writing manifest to stdout:~n", []),
io:fwrite("~s~n", [Manifest]);
io:fwrite("~ts~n", [Manifest]);
output_manifest(Manifest, File) ->
rebar_log:log(info, "Build info written to: ~ts~n", [File]),
file:write_file(File, Manifest).
Expand Down

0 comments on commit 8b6c828

Please sign in to comment.