Skip to content

Commit

Permalink
Merge pull request maximilianh#171 from inodb/patch-1
Browse files Browse the repository at this point in the history
Fix maximilianh#170 Many thanks @inodb !
  • Loading branch information
maximilianh committed May 5, 2020
2 parents 634dd61 + 389f4d6 commit a14cc20
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/cbPyLib/cellbrowser/cellbrowser.py
Original file line number Diff line number Diff line change
Expand Up @@ -4166,8 +4166,9 @@ def findRoot(inDir=None):
def resolveOutDir(outDir):
""" user can define mapping e.g. {"alpha" : "/usr/local/apache/htdocs-cells"} in ~/.cellbrowser.conf """
confDirs = getConfig("outDirs")
if outDir in confDirs:
outDir = confDirs[outDir]
if confDirs:
if outDir in confDirs:
outDir = confDirs[outDir]
return outDir

def build(confFnames, outDir, port=None, doDebug=False, devMode=False, redo=None):
Expand Down

0 comments on commit a14cc20

Please sign in to comment.