Skip to content

Commit

Permalink
Add print after setup
Browse files Browse the repository at this point in the history
  • Loading branch information
adhilto committed Mar 4, 2025
1 parent fdd2182 commit d253f41
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scubagoggles/user_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ def user_setup(arguments: argparse.Namespace):

modified |= credentials_file(arguments)

print("Configured default locations:")
print(f' - Output directory: {config.output_dir}')
print(f' - OPA executable: {config.opa_dir}')
print(f' - API credentials file: {config.credentials_file}')

if modified:
config.write()
else:
Expand Down

0 comments on commit d253f41

Please sign in to comment.