File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -593,6 +593,8 @@ func (s *Supplier) UninstallUnusedDependencies() error {
593593}
594594
595595func (s * Supplier ) RunPipUnvendored () error {
596+ s .Log .BeginStep ("Running Pip Install (Unvendored)" )
597+
596598 shouldContinue , requirementsPath , err := s .shouldRunPip ()
597599 if err != nil {
598600 return err
@@ -652,6 +654,8 @@ func (s *Supplier) RunPipUnvendored() error {
652654}
653655
654656func (s * Supplier ) RunPipVendored () error {
657+ s .Log .BeginStep ("Running Pip Install (Vendored)" )
658+
655659 shouldContinue , requirementsPath , err := s .shouldRunPip ()
656660 if err != nil {
657661 return err
@@ -807,7 +811,6 @@ func writePyDistUtils(distUtils map[string][]string) error {
807811}
808812
809813func (s * Supplier ) shouldRunPip () (bool , string , error ) {
810- s .Log .BeginStep ("Running Pip Install" )
811814 if os .Getenv ("PIP_CERT" ) == "" {
812815 os .Setenv ("PIP_CERT" , "/etc/ssl/certs/ca-certificates.crt" )
813816 }
You can’t perform that action at this time.
0 commit comments