Skip to content

Commit

Permalink
Improve bazel error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamefire committed Jan 19, 2023
1 parent 795e8b6 commit 5f93ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/easyblocks/t/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def get_bazel_version():
"""Get the Bazel version as a LooseVersion. Error if not found"""
version = get_software_version('Bazel')
if version is None:
raise EasyBuildError('Bazel version not found. Is it a dependency?')
raise EasyBuildError('Failed to determine Bazel version - is it listed as a (build) dependency?')
return LooseVersion(version)


Expand Down

0 comments on commit 5f93ffc

Please sign in to comment.