Skip to content

Commit

Permalink
Removed - Aborting from error message as users might not want to abort
Browse files Browse the repository at this point in the history
  • Loading branch information
TGWolf committed May 31, 2024
1 parent 0d0491d commit fa6414f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ message: If you use this software, please cite it using these metadata.
title: Check Prerequisites
abstract: Check prerequisite are meet for commands that need to be run.
type: software
version: 0.1.3
version: 0.1.4
date-released: 2024-05-31
repository-code: https://github.com/DevelopersToolbox/check-prerequisite-package
keywords:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='wolfsoftware.prereqs',
version='0.1.3',
version='0.1.4',
author='Wolf Software',
author_email='[email protected]',
description='Check for the presence of prerequisite commands and returns their paths.',
Expand Down
2 changes: 1 addition & 1 deletion wolfsoftware/prereqs/prerequisite_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def check_prerequisite(prerequisite_commands: List) -> Dict:
for command in prerequisite_commands:
full_path: Optional[str] = shutil.which(command, path=expanded_search_path)
if full_path is None:
errors_verbose.append(f"{command} is not installed - Aborting")
errors_verbose.append(f"{command} is not installed")
else:
command_paths[command] = full_path

Expand Down

0 comments on commit fa6414f

Please sign in to comment.