You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/commands/post-install.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ export class PostInstallCliCommand implements ICommand {
18
18
private$settingsService: ISettingsService,
19
19
private$analyticsService: IAnalyticsService,
20
20
private$logger: ILogger,
21
-
private$hostInfo: IHostInfo
21
+
private$hostInfo: IHostInfo,
22
22
){}
23
23
24
24
publicdisableAnalytics=true;
@@ -35,7 +35,7 @@ export class PostInstallCliCommand implements ICommand {
35
35
// TODO: Check if this is the correct place, probably we should set this at the end of the command.
36
36
awaitthis.$fs.setCurrentUserAsOwner(
37
37
this.$settingsService.getProfileDir(),
38
-
process.env.SUDO_USER
38
+
process.env.SUDO_USER,
39
39
);
40
40
}
41
41
}
@@ -66,7 +66,7 @@ export class PostInstallCliCommand implements ICommand {
66
66
67
67
this.$logger.info("");
68
68
this.$logger.printMarkdown(
69
-
"If you have any questions, check Stack Overflow: `https://stackoverflow.com/questions/tagged/nativescript` and our public Discord channel: `https://nativescript.org/discord`"
69
+
"If you have any questions, check Stack Overflow: `https://stackoverflow.com/questions/tagged/nativescript` and our public Discord channel: `https://nativescript.org/discord`",
0 commit comments