Skip to content

Commit

Permalink
Merge pull request #11 from hlxjs/issues/fix-parent-uri-issue
Browse files Browse the repository at this point in the history
Fix inputDir
  • Loading branch information
kuu committed Jul 30, 2019
2 parents 6ecf80d + fb045cc commit af17c5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion writable.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class WriteStream extends stream.Transform {
constructor(options) {
super({objectMode: true});
this.outputDir = options.outputDir || process.cwd();
this.outputDir = options.inputDir || '/';
this.inputDir = options.inputDir || '/';
this.shouldStorePlaylist = Boolean(options.storePlaylist);
}

Expand Down

0 comments on commit af17c5c

Please sign in to comment.