Skip to content

Commit c0e6af3

Browse files
Rename omnisharpInstall.ts to omnisharpDownload.ts
1 parent 7b388e7 commit c0e6af3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
const del = require('del');
99
const gulp = require('gulp');
1010
const tslint = require('gulp-tslint');
11-
const omnisharpInstall = require('./out/omnisharpInstall');
11+
const omnisharpDownload = require('./out/omnisharpDownload');
1212

1313
gulp.task('omnisharp:clean', () => {
1414
return del('.omnisharp');
1515
});
1616

1717
gulp.task('omnisharp:fetch', ['omnisharp:clean'], () => {
18-
return omnisharpInstall.downloadOmnisharp();
18+
return omnisharpDownload.downloadOmnisharp();
1919
});
2020

2121
const allTypeScript = [

src/omnisharpInstall.ts renamed to src/omnisharpDownload.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@ export function downloadOmnisharp(): Promise<boolean> {
117117
});
118118
});
119119
});
120-
}
120+
}

0 commit comments

Comments
 (0)