Skip to content

Commit ccb0c1a

Browse files
author
Jan Steinke
committed
fix logoutput
1 parent 24cb1f7 commit ccb0c1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/npm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func (b NPM) InstallPackages(packages []string) error {
3131
logrus.Info("no npm packages to install")
3232
return nil
3333
}
34-
logrus.Info("Installing vscode extensions:", packages)
34+
logrus.Info("Installing npm packages:", packages)
3535
args := append([]string{"install", "--global"}, packages...)
3636
_, err := b.Commander(npmExe, args...)
3737
if err != nil {

0 commit comments

Comments
 (0)