File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -857,20 +857,18 @@ pub fn populate_venv(
857857 }
858858
859859 had_collision = true ;
860- eprintln ! ( "Collision detected at destination: {}" , dest . display ( ) ) ;
861- for source in sources {
862- match source {
863- Command :: Copy { src , .. } | Command :: CopyAndPatch { src , .. } => {
864- if emit_error {
860+ if emit_error {
861+ eprintln ! ( "Collision detected at destination: {}" , dest . display ( ) ) ;
862+ for source in sources {
863+ match source {
864+ Command :: Copy { src , .. } | Command :: CopyAndPatch { src , .. } => {
865865 eprintln ! ( " - Source: {} (Copy)" , src. display( ) )
866866 }
867- }
868- Command :: Symlink { src, .. } => {
869- if emit_error {
867+ Command :: Symlink { src, .. } => {
870868 eprintln ! ( " - Source: {} (Symlink)" , src. display( ) )
871869 }
870+ _ => { }
872871 }
873- _ => { }
874872 }
875873 }
876874 }
You can’t perform that action at this time.
0 commit comments