Skip to content

Commit

Permalink
Move starter project into dbt repo (#3474)
Browse files Browse the repository at this point in the history
Addresses issue #3005

automatic commit by git-black, original commits:
  c794600
  • Loading branch information
leahwicz authored and iknox-fa committed Feb 8, 2022
1 parent abfc3ec commit fa0f907
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/dbt/task/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
class InitTask(BaseTask):
def copy_starter_repo(self, project_name):
fire_event(StarterProjectPath(dir=starter_project_directory))
shutil.copytree(starter_project_directory, project_name,
shutil.copytree(
ignore=shutil.ignore_patterns(*IGNORE_FILES))

def create_profiles_dir(self, profiles_dir: str) -> bool:
Expand Down
2 changes: 1 addition & 1 deletion core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
author_email="[email protected]",
url="https://github.com/dbt-labs/dbt-core",
packages=find_namespace_packages(include=['dbt', 'dbt.*']),
include_package_data = True,
include_package_data=True,
test_suite='test',
entry_points={
'console_scripts': [
Expand Down

0 comments on commit fa0f907

Please sign in to comment.