Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/features/terminal/shells/bash/bashStartup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ async function removeStartup(profile: string, key: string): Promise<boolean> {
}

export class BashStartupProvider implements ShellStartupScriptProvider {
public readonly name: string = 'Bash';
public readonly name: string = 'bash';
public readonly shellType: string = ShellConstants.BASH;

private async checkShellInstalled(): Promise<boolean> {
Expand Down Expand Up @@ -178,7 +178,7 @@ export class BashStartupProvider implements ShellStartupScriptProvider {
}

export class ZshStartupProvider implements ShellStartupScriptProvider {
public readonly name: string = 'Zsh';
public readonly name: string = 'zsh';
public readonly shellType: string = ShellConstants.ZSH;

private async checkShellInstalled(): Promise<boolean> {
Expand Down Expand Up @@ -239,7 +239,7 @@ export class ZshStartupProvider implements ShellStartupScriptProvider {
}

export class GitBashStartupProvider implements ShellStartupScriptProvider {
public readonly name: string = 'GitBash';
public readonly name: string = 'Git bash';
public readonly shellType: string = ShellConstants.GITBASH;

private async checkShellInstalled(): Promise<boolean> {
Expand Down
2 changes: 1 addition & 1 deletion src/features/terminal/shells/fish/fishStartup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async function removeFishStartup(profilePath: string, key: string): Promise<bool
}

export class FishStartupProvider implements ShellStartupScriptProvider {
public readonly name: string = 'Fish';
public readonly name: string = 'fish';
public readonly shellType: string = ShellConstants.FISH;

async isSetup(): Promise<ShellSetupState> {
Expand Down