Skip to content

Commit 071d1e2

Browse files
Merge pull request #3433 from NativeScript/kerezov/double-space
fix: stop printing double spaces
2 parents 88d5c0e + ff8e901 commit 071d1e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/npm-installation-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export class NpmInstallationManager implements INpmInstallationManager {
136136
}
137137

138138
private async npmInstall(packageName: string, pathToSave: string, version: string, dependencyType: string): Promise<INpmInstallResultInfo> {
139-
this.$logger.out("Installing ", packageName);
139+
this.$logger.out(`Installing ${packageName}`);
140140

141141
packageName = packageName + (version ? `@${version}` : "");
142142

0 commit comments

Comments
 (0)