Skip to content

Commit

Permalink
first pass at a working "dbt docs serve" command!
Browse files Browse the repository at this point in the history
automatic commit by git-black, original commits:
  975df13
  • Loading branch information
cmcarthur authored and iknox-fa committed Feb 8, 2022
1 parent bfd9c19 commit 3a8d0db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/task/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def run(self):
port = self.args.port
address = "0.0.0.0"

shutil.copyfile(DOCS_INDEX_FILE_PATH, 'index.html')
shutil.copyfile(DOCS_INDEX_FILE_PATH, "index.html")

fire_event(ServingDocsPort(address=address, port=port))
fire_event(ServingDocsAccessInfo(port=port))
Expand Down

0 comments on commit 3a8d0db

Please sign in to comment.