Component
Setup/Standup
Describe the bug
Description
The setup/install_deps.sh script fails:
- while installing
config_explorer component because of incorrect resolution of directory path to config_explorer directory and
- when the path to the repository contains spaces due to unquoted variables in the script
Steps to reproduce
Steps to Reproduce
- Clone repository to a path with spaces (e.g.,
/path/with spaces/llm-d-benchmark)
- Run
./setup/install_deps.sh
- Script fails with errors about missing directories
- Script also fails while resolving directory path to config_explorer even if there are no space characters in the path variables
Additional context or screenshots
Root Causes
- Unquoted path variables cause word splitting
LLMDBENCH_INSTALLDEPS_DIR incorrectly resolves to repository root instead of setup directory
- config_explorer installation fails due to incorrect path resolution
Affected Files
Related