Skip to content

Commit

Permalink
Do not make nosymlink required. That would bump the semver version.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcw committed Jun 20, 2012
1 parent d6ea7f8 commit c74ad8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/millstone.js
Expand Up @@ -244,7 +244,7 @@ function resolve(options, callback) {
if (!options.mml) return callback(new Error('options.mml is required'));
if (!options.base) return callback(new Error('options.base is required'));
if (!options.cache) return callback(new Error('options.cache is required'));
if (typeof options.nosymlink === "undefined") return callback(new Error('options.nosymlink is required'));
if (typeof options.nosymlink === "undefined") options.nosymlink = false;

var mml = options.mml,
base = path.resolve(options.base),
Expand Down

0 comments on commit c74ad8b

Please sign in to comment.