Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
bump to 1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Dec 5, 2017
1 parent 1fa217d commit 6d263fd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions bin/test
Expand Up @@ -26,7 +26,7 @@ var windowsExecutable;
var darwinExecutable;
var linuxExecutable;

if(isInsiders) {
if (isInsiders) {
windowsExecutable = path.join(testRunFolderAbsolute, 'Code - Insiders');
darwinExecutable = path.join(testRunFolderAbsolute, 'Visual Studio Code - Insiders.app', 'Contents', 'MacOS', 'Electron');
linuxExecutable = path.join(testRunFolderAbsolute, 'VSCode-linux-x64', 'code-insiders');
Expand Down Expand Up @@ -55,7 +55,7 @@ console.log('### VS Code Extension Test Run ###');
console.log('Current working directory: ' + process.cwd());

function runTests() {
var executable = (process.platform === 'darwin') ? darwinExecutable : process.platform === 'win32' ? windowsExecutable : linuxExecutable;
var executable = (process.platform === 'darwin') ? darwinExecutable : process.platform === 'win32' ? windowsExecutable : linuxExecutable;
var args = [
testsWorkspace,
'--extensionDevelopmentPath=' + extensionsFolder,
Expand Down Expand Up @@ -101,9 +101,9 @@ function downloadExecutableAndRunTests() {
.pipe(source(path.basename(downloadUrl)))
.pipe(gunzip())
.pipe(untar())
.pipe(gulpFilter)
.pipe(chmod(0o755))
.pipe(gulpFilter.restore)
.pipe(gulpFilter)
.pipe(chmod(493)) // 0o755
.pipe(gulpFilter.restore)
.pipe(symdest(testRunFolder));
} else {
stream = remote('', { base: downloadUrl })
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "vscode",
"version": "1.1.9",
"version": "1.1.10",
"typings": "vscode.d.ts",
"scripts": {
"prepublish": "tsc -p ./",
Expand Down

0 comments on commit 6d263fd

Please sign in to comment.