Skip to content
This repository has been archived by the owner on Sep 27, 2020. It is now read-only.

Commit

Permalink
fixed Project container/app mapping with upper case letters in projec…
Browse files Browse the repository at this point in the history
…t folder
  • Loading branch information
marcelkilian committed Mar 31, 2016
1 parent f9669a3 commit b9e3b87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/projects/list.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ model.loadProject = (projectPath, callback) ->
project = config.eintopf
project['path'] = projectPath
project['scripts'] = config.scripts if config.scripts
project['id'] = path.basename(projectPath)
project['id'] = path.basename(projectPath).toLowerCase()
project['composeId'] = project.id.replace(/[^a-zA-Z0-9]/ig, "")
project['readme'] = result[1] || ''

Expand Down

0 comments on commit b9e3b87

Please sign in to comment.