diff --git a/dist/verbs/convert.js b/dist/verbs/convert.js index d15f7f8..361255a 100644 --- a/dist/verbs/convert.js +++ b/dist/verbs/convert.js @@ -94,7 +94,7 @@ Implementation of the 'convert' verb for HackMyResume. format: null, objectify: true, inner: { - "private": true + "private": false } }); if (rinfo.fluenterror) { diff --git a/src/verbs/convert.coffee b/src/verbs/convert.coffee index 2261ccf..a88a8d7 100644 --- a/src/verbs/convert.coffee +++ b/src/verbs/convert.coffee @@ -61,7 +61,7 @@ _convert = ( srcs, dst, opts ) -> ###* Private workhorse method. Convert a single resume. ### _convertOne = (src, dst, idx) -> # Load the resume - rinfo = ResumeFactory.loadOne src, format: null, objectify: true, inner: { private: true } + rinfo = ResumeFactory.loadOne src, format: null, objectify: true # If a load error occurs, report it and move on to the next file (if any) if rinfo.fluenterror