Skip to content

Commit

Permalink
Merge pull request #48 from bionode/path_fix
Browse files Browse the repository at this point in the history
correct path to home folder
  • Loading branch information
thejmazz committed May 17, 2017
2 parents 9600dbd + cc8b3bc commit b19a8d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/pipelines/capitalize/capitalize.js
@@ -1,6 +1,6 @@
'use strict'

const { task, shell } = require('../..')()
const { task, shell } = require('../../..')()

const intoStream = require('into-stream')
const fs = require('fs')
Expand Down
2 changes: 1 addition & 1 deletion examples/pipelines/pids/pipeline.js
Expand Up @@ -4,7 +4,7 @@ const split = require('split')
const fs = require('fs')
const through = require('through2')

const { task, join, parallel } = require('../..')
const { task, join, parallel } = require('../../..')

const dumpPIDs = task({
output: '*.pids',
Expand Down
2 changes: 1 addition & 1 deletion examples/pipelines/variant-calling-simple/pipeline.js
Expand Up @@ -5,7 +5,7 @@ const {
task,
join,
junction,
} = require('../..')
} = require('../../..')

// === MODULES ===
const fs = require('fs-extra')
Expand Down

0 comments on commit b19a8d3

Please sign in to comment.