Skip to content

Commit

Permalink
new_project: fixed empty project creation
Browse files Browse the repository at this point in the history
Signed-off-by: Vitaly Chipounov <[email protected]>
  • Loading branch information
vitalych committed Jul 27, 2024
1 parent f9815b1 commit 5c993f7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions s2e_env/commands/new_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,4 +333,7 @@ def handle(self, *args, **options):
if options['target']:
_handle_with_file(options.pop('target'), options.pop('target_args'), proj_class, *args, **options)
else:
if not proj_class:
proj_class = _get_project_class(**options)

_handle_empty_project(proj_class, *args, **options)

0 comments on commit 5c993f7

Please sign in to comment.