Skip to content

Commit b1e2e2b

Browse files
committed
🐛 show that quatro is not installed
1 parent dee89d8 commit b1e2e2b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

vuegen/quarto_reportview.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ def run_report(self, output_dir: str = BASE_DIR) -> None:
120120
except subprocess.CalledProcessError as e:
121121
self.report.logger.error(f"Error running '{self.report.title}' {self.report_type} report: {str(e)}")
122122
raise
123+
except FileNotFoundError as e:
124+
self.report.logger.error(f"Quarto is not installed. Please install Quarto to run the report: {str(e)}")
125+
raise
123126

124127
def _create_yaml_header(self) -> str:
125128
"""

0 commit comments

Comments
 (0)