Skip to content

Commit

Permalink
🐛 fix(sak/js/doc): Update config filename.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Apr 17, 2020
1 parent 1e9cfdf commit ff40992
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sak/js.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,12 @@ def doc ( ) :

jsonhook = collections.OrderedDict

with lib.json.proxy("esdoc.json", "r", object_pairs_hook=jsonhook) as esdoc:
with lib.json.proxy(".esdoc.json", "r", object_pairs_hook=jsonhook) as esdoc:
config = esdoc

with tempfile.TemporaryDirectory() as tmp:

tmpconfig = tmp + '/esdoc.json'
tmpconfig = tmp + '/.esdoc.json'
build = tmp + '/build'

config['destination'] = build
Expand Down

0 comments on commit ff40992

Please sign in to comment.