Skip to content

Commit

Permalink
ci: Melos root path not needed for running doc setup script (#3340)
Browse files Browse the repository at this point in the history
It needs to use the full root path to find the script.
  • Loading branch information
spydon authored and luanpotter committed Oct 15, 2024
1 parent 00367bf commit a1a62ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/doc-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
echo Checking python version:
python3 --version && python3 -c "import sys; sys.exit(0 if sys.version_info >= (3,8) else 2)" || (echo "Error: Python 3.8+ is required" && exit 1)
echo Installing required python modules:
python3 -m pip install -r "$MELOS_ROOT_PATH/doc/_sphinx/requirements.txt"
python3 -m pip install -r "doc/_sphinx/requirements.txt"
echo Installing dartdoc_json:
dart pub global activate dartdoc_json
echo Done.

0 comments on commit a1a62ba

Please sign in to comment.