@@ -78,6 +78,7 @@ func applyAll(dir string, projectConfig projectconfig.ZeroProjectConfig, applyEn
7878 if module .IsLocal (mod .Files .Source ) && ! filepath .IsAbs (modulePath ) {
7979 modulePath = filepath .Join (dir , modulePath )
8080 }
81+ flog .Debugf ("Loaded module: %s from %s" , name , modulePath )
8182
8283 // TODO: in the case user lost the `/tmp` (module source dir), this will fail
8384 // and we should redownload the module for the user
@@ -91,6 +92,7 @@ func applyAll(dir string, projectConfig projectconfig.ZeroProjectConfig, applyEn
9192 credentialEnvs := credentials .SelectedVendorsCredentialsAsEnv (modConfig .RequiredCredentials )
9293 envList = util .AppendProjectEnvToCmdEnv (mod .Parameters , envList )
9394 envList = util .AppendProjectEnvToCmdEnv (credentialEnvs , envList )
95+ flog .Debugf ("Env injected: %#v" , envList )
9496 util .ExecuteCommand (exec .Command ("make" ), modulePath , envList )
9597 return nil
9698 })
@@ -158,8 +160,10 @@ func summarizeAll(dir string, projectConfig projectconfig.ZeroProjectConfig, app
158160 if module .IsLocal (mod .Files .Source ) && ! filepath .IsAbs (modulePath ) {
159161 modulePath = filepath .Join (dir , modulePath )
160162 }
163+ flog .Debugf ("Loaded module: %s from %s" , name , modulePath )
161164
162165 envList = util .AppendProjectEnvToCmdEnv (mod .Parameters , envList )
166+ flog .Debugf ("Env injected: %#v" , envList )
163167 util .ExecuteCommand (exec .Command ("make" , "summary" ), modulePath , envList )
164168 return nil
165169 })
0 commit comments