Skip to content

Commit

Permalink
PDK_CUSTOM expects a string not None (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhunkeler committed Aug 24, 2021
1 parent 89dee22 commit 0a514b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandokia/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def run(args):
test_run = os.environ.get("PDK_TESTRUN", None)
test_prefix = os.environ.get("PDK_TESTPREFIX", None)
context = os.environ.get("PDK_CONTEXT", 'default')
custom = os.environ.get("PDK_CUSTOM", None)
custom = os.environ.get("PDK_CUSTOM", "")
parallel = os.environ.get("PDK_PARALLEL", None)
tmpdir = os.environ.get("PDK_TMP", None)
host = os.environ.get("PDK_HOST", None)
Expand Down

0 comments on commit 0a514b5

Please sign in to comment.