We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cceb264 commit 17c07b4Copy full SHA for 17c07b4
internal/julia.go
@@ -24,10 +24,10 @@ func (b Julia) GetMissingPackages() ([]string, error) {
24
}
25
logrus.WithField("output", string(stdout)).Debug("julia stdout")
26
installedFormulae := strings.Split(strings.Trim(string(stdout), "\n"), "\n")[1:]
27
- logrus.WithField("output", installedFormulae).Debug("julia installed formulae")
+ logrus.WithField("output", installedFormulae).Debug("julia installed modules")
28
installedMap := map[string]bool{}
29
for _, p := range installedFormulae {
30
- logrus.WithField("output", p).Error("julia installed formulae")
+ logrus.WithField("output", p).Debug("processing julia installed module")
31
words := strings.Fields(p)
32
installedMap[words[1]] = true
33
0 commit comments