Skip to content

Commit

Permalink
DROPME temporarily disable subproject bootstrapping
Browse files Browse the repository at this point in the history
So I can try manually what is going wrong.
  • Loading branch information
jgonggrijp committed Nov 5, 2024
1 parent 4a27342 commit db6befc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ def python_path():

def main(argv):
print('\nFiles generated. Performing final steps.')
boot_sup = bootstrap_subprojects()
if not boot_sup:
print(f'\nSubproject initialization failed. Please see {LOGFILE_NAME} for details.')
return 1
try:
activate_frontend()
except Exception as exception:
print(exception)
print("[ERROR] Activating frontend failed!!")
if '{{cookiecutter.frontend}}' == 'backbone' and not generate_backbone_translations(): return 1
# boot_sup = bootstrap_subprojects()
# if not boot_sup:
# print(f'\nSubproject initialization failed. Please see {LOGFILE_NAME} for details.')
# return 1
# try:
# activate_frontend()
# except Exception as exception:
# print(exception)
# print("[ERROR] Activating frontend failed!!")
# if '{{cookiecutter.frontend}}' == 'backbone' and not generate_backbone_translations(): return 1


def generate_backbone_translations():
Expand Down

0 comments on commit db6befc

Please sign in to comment.