File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -917,7 +917,10 @@ defmodule Mix.Project do
917
917
build_path = build_path ( config )
918
918
919
919
on_taken = fn os_pid ->
920
- Mix . shell ( ) . info ( "Waiting for lock on the build directory (held by process #{ os_pid } )" )
920
+ Mix . shell ( ) . error ( [
921
+ IO.ANSI . reset ( ) ,
922
+ "Waiting for lock on the build directory (held by process #{ os_pid } )"
923
+ ] )
921
924
end
922
925
923
926
Mix.Sync.Lock . with_lock ( build_path , fun , on_taken: on_taken )
@@ -931,7 +934,10 @@ defmodule Mix.Project do
931
934
deps_path = deps_path ( config )
932
935
933
936
on_taken = fn os_pid ->
934
- Mix . shell ( ) . info ( "Waiting for lock on the deps directory (held by process #{ os_pid } )" )
937
+ Mix . shell ( ) . error ( [
938
+ IO.ANSI . reset ( ) ,
939
+ "Waiting for lock on the deps directory (held by process #{ os_pid } )"
940
+ ] )
935
941
end
936
942
937
943
Mix.Sync.Lock . with_lock ( deps_path , fun , on_taken: on_taken )
You can’t perform that action at this time.
0 commit comments