Skip to content

Commit ff8e901

Browse files
Mitko-KerezovDimitar Kerezov
authored and
Dimitar Kerezov
committed
fix: stop printing double spaces
Whenever installing the platform `tns-android` or `tns-ios` do not print `Installing <platform>` (with two spaces) but instead print only a single space between the words
1 parent d77388d commit ff8e901

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)