Skip to content

Commit

Permalink
Merge pull request #153 from DustinCampbell/fix-case-sensitivity
Browse files Browse the repository at this point in the history
Don't search for OmniSharp launcher case-insensitively
  • Loading branch information
DustinCampbell committed Apr 6, 2016
2 parents 42988a9 + 5e77b92 commit 210a7c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/omnisharpPath.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import * as path from 'path';
import * as vscode from 'vscode';

const runFileName = process.platform === 'win32' ? 'run.cmd' : 'run';
const omnisharpFileName = process.platform === 'win32' ? 'omnisharp.cmd' : 'omnisharp';
const omnisharpExeFileName = process.platform === 'win32' ? 'omnisharp.exe' : 'omnisharp';
const omnisharpFileName = process.platform === 'win32' ? 'OmniSharp.cmd' : 'OmniSharp';
const omnisharpExeFileName = process.platform === 'win32' ? 'OmniSharp.exe' : 'OmniSharp';

function getLaunchFilePath(filePathOrFolder: string): Promise<string> {
return fs.lstatAsync(filePathOrFolder).then(stats => {
Expand Down

0 comments on commit 210a7c3

Please sign in to comment.