summaryrefslogtreecommitdiffstats
path: root/lib/generate/site/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/generate/site/index.js')
-rw-r--r--lib/generate/site/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/generate/site/index.js b/lib/generate/site/index.js
index 84a0d2f..487b6d6 100644
--- a/lib/generate/site/index.js
+++ b/lib/generate/site/index.js
@@ -77,8 +77,8 @@ Generator.prototype.convertFile = function(content, _input) {
Generator.prototype.finish = function() {
var that = this;
- return fs.symlink(
- 'README.html',
+ return fs.copy(
+ path.join(that.options.output, 'README.html'),
path.join(that.options.output, 'index.html')
)
.then(function() {