Skip to content

Commit

Permalink
Merge pull request #57 from alphaville/fix/56
Browse files Browse the repository at this point in the history
Fix issue 56 by making the current directory default
  • Loading branch information
korken89 committed Jun 22, 2019
2 parents 4d65962 + f1d0213 commit 64977f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions open-codegen/opengen/config/build_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ class BuildConfiguration:
"""

def __init__(self, build_dir=None):
def __init__(self, build_dir="."):
"""
Construct an instance of BuildConfiguration
Args:
build_dir: Target directory
build_dir: Target directory, defaults to the current directory
Returns:
A new instance of BuildConfiguration
Expand Down

0 comments on commit 64977f4

Please sign in to comment.