Print error message if bat not found on path

This commit is contained in:
Mithil Poojary 2020-10-05 04:17:28 +05:30 committed by David Peter
parent b623adc6df
commit 6df8b3fe72
1 changed files with 3 additions and 0 deletions

View File

@ -64,6 +64,9 @@ def create_highlighted_versions(output_basepath):
file=sys.stderr,
)
sys.exit(1)
except FileNotFoundError:
print("Error: Could not execute 'bat'. Please make sure that the executable is available on the PATH.")
sys.exit(1)
if __name__ == "__main__":