mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 01:56:21 +00:00
Removed the forced private option from the CONVERT verb as it is now the default behaviour
This commit is contained in:
parent
fe46d15031
commit
3c166a21a0
2
dist/verbs/convert.js
vendored
2
dist/verbs/convert.js
vendored
@ -94,7 +94,7 @@ Implementation of the 'convert' verb for HackMyResume.
|
||||
format: null,
|
||||
objectify: true,
|
||||
inner: {
|
||||
"private": true
|
||||
"private": false
|
||||
}
|
||||
});
|
||||
if (rinfo.fluenterror) {
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user