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

Commit

Permalink
Remove gulp-symdest dependency (fixes #123)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Dec 5, 2018
1 parent 1c16d08 commit 163aa90
Show file tree
Hide file tree
Showing 3 changed files with 205 additions and 118 deletions.
6 changes: 3 additions & 3 deletions bin/test
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

var remote = require('gulp-remote-src-vscode');
var vzip = require('gulp-vinyl-zip');
var symdest = require('gulp-symdest');
var vfs = require('vinyl-fs');
var untar = require('gulp-untar');
var gunzip = require('gulp-gunzip');
var chmod = require('gulp-chmod');
Expand Down Expand Up @@ -104,11 +104,11 @@ function downloadExecutableAndRunTests() {
.pipe(gulpFilter)
.pipe(chmod(493)) // 0o755
.pipe(gulpFilter.restore)
.pipe(symdest(testRunFolder));
.pipe(vfs.dest(testRunFolder));
} else {
stream = remote('', { base: downloadUrl })
.pipe(vzip.src())
.pipe(symdest(testRunFolder));
.pipe(vfs.dest(testRunFolder));
}

stream.on('end', runTests);
Expand Down

0 comments on commit 163aa90

Please sign in to comment.