Skip to content

Commit

Permalink
TVB-2417 Temporary disable signing to check app state
Browse files Browse the repository at this point in the history
  • Loading branch information
liadomide committed Aug 1, 2023
1 parent 881ee53 commit 46e0468
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tvb_build/setup_mac.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def _generate_distribution(final_name, library_path, version, extra_licensing_ch
online_help_dst = os.path.join(library_abs_path, "tvb", "interfaces", "web", "static", "help")
print("- Moving " + online_help_src + " to " + online_help_dst)
os.rename(online_help_src, online_help_dst)
sign_app()
# sign_app()
create_dmg()

print("- Cleaning up non-required files...")
Expand Down
2 changes: 1 addition & 1 deletion tvb_library/tvb/basic/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def _build_profile_class(cls, selected_profile, in_operation=False, run_init=Tru

else:
msg = "Invalid profile name %r, expected one of %r"
msg %= (selected_profile, cls.REGISTERED_PROFILES)
msg %= (selected_profile, cls.REGISTERED_PROFILES.keys())
raise Exception(msg)

@classmethod
Expand Down

0 comments on commit 46e0468

Please sign in to comment.