Skip to content

Commit

Permalink
Make command final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bapti committed Dec 18, 2015
1 parent 48f3898 commit 8660010
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/commands/make.coffee
Expand Up @@ -20,12 +20,12 @@ module.exports = (options) ->
del.sync([config.imagePath])
fs.mkdirsSync(config.imagePath)

images.create(config.pumlPath, config.imagePath ,() ->
imageMetaData = images.metaData(config.imagePath)

images.create(config.pumlPath, config.imagePath ,(err, paths) ->
imageMetaData = images.metaData(paths)
allconfig = _.merge({images: imageMetaData}, config)
readme.create(
config.readmeTemplatePath
config.readmeOutputPath
_.merge(imageMetaData, config)
allconfig
)
)

0 comments on commit 8660010

Please sign in to comment.