Skip to content

Commit

Permalink
Fix inputDir
Browse files Browse the repository at this point in the history
  • Loading branch information
kuu committed Jul 30, 2019
1 parent 6ecf80d commit fb045cc
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 fb045cc

Please sign in to comment.